import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { LayoutDivStyleType, MyCustomDiv, MyCustomDivLayoutType } from '../MyCustomDiv'; import { LayoutDivCreateAttachedObjFuncType } from './LayoutDivCreateAttachedObjFuncType'; export declare class LayoutDiv extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; createAttachedObjFuncStr: string; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; color: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; cssText: string; allowPicking: boolean; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); static defaultCssText: string; static defaultUpdateDivFuncStr: string; static defaultUpdateDivFuncStrMd: string; static defaultCreateAttachedObjFuncStr: string; static defaultCreateAttachedObjFuncStrMd: string; static defaultCssTextMd: string; static defaultLayoutStyleMd: string; private _createAttachedObjFunc; get createAttachedObjFunc(): LayoutDivCreateAttachedObjFuncType | undefined; set createAttachedObjFunc(value: LayoutDivCreateAttachedObjFuncType | undefined); get createAttachedObjFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[LayoutDivCreateAttachedObjFuncType | undefined, LayoutDivCreateAttachedObjFuncType | undefined]>; private _customDiv; get customDiv(): MyCustomDiv<{ destroy(): undefined; }>; flushCss(): void; get div(): HTMLDivElement; getInstanceClassObj(): { destroy(): undefined; } | undefined; getAttachedObj(): any; static defaults: { backgroundColor: [number, number, number, number]; color: [number, number, number, number]; viewerTagsEnums: [string, string][]; }; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); get containerChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[HTMLElement | undefined, HTMLElement | undefined]>; setLayoutStyle(layoutStyle: LayoutDivStyleType): void; setDivAttribute(name: string, value: string): void; get finalCssText(): string; get finalCssTextChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace LayoutDiv { const createDefaultProps: () => { show: boolean; createAttachedObjFuncStr: string; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; color: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; cssText: string; allowPicking: boolean; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface LayoutDiv extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};