import { DocumentLayout, LayoutData } from "@win2win/shared";
export interface GlobalModel {
    signed?: boolean;
    values?: {
        [key: string]: any;
    };
}
type __VLS_Props = {
    layout?: Pick<DocumentLayout, "styles" | "sections" | "format">;
    data?: LayoutData;
    htmlNodes?: {
        index: number;
        element: HTMLElement;
    }[];
    pdf?: {
        url: string;
    };
    editable?: boolean;
};
type __VLS_PublicProps = __VLS_Props & {
    modelValue?: GlobalModel;
};
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    "update:modelValue": (value: GlobalModel | undefined) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: ((value: GlobalModel | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;
//# sourceMappingURL=SectionsContainer.vue.d.ts.map