import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Destroyable, Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { LayoutDivStyleType, MyCustomDivLayoutType } from '../MyCustomDiv'; import { CircleButtonsFlexDirectionType, CircleButtonsTool } from '../CircleButtonsTool'; export declare type ButtonParamsType = { text?: string; title?: string; normalImageUri?: string; normalImageSize?: number; hoveredImageUri?: string; hoveredImageSize?: number; pressedImageUri?: string; pressedImageSize?: number; sceneObjectType?: string; createFuncStr?: string; }; export declare class TempObjsCreatorTool extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; cssText: string; showDeleteButton: boolean; clickFuncStr: string; buttons: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; backgroundRadius: number; borderWidth: number; borderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; padding: number; gap: number; direction: CircleButtonsFlexDirectionType; buttonRadius: number; buttonBackgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonBorderWidth: number; buttonBorderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonTextColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonFontSize: number; 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 defaults: { viewerTagsEnums: [string, string][]; }; static defaultButtons: { text: string; title: string; normalImageUri: string; normalImageSize: number; hoveredImageUri: string; hoveredImageSize: number; pressedImageUri: string; pressedImageSize: number; }[]; static defaultButtonsClickFuncStrMd: string; static tempObjsCreatorButtonsMd: string; private _map; get map(): Map; private _objCreatedEvent; get objCreatedEvent(): Event<[index: number, id: string, tempObj: Destroyable]>; deleteAllTempObj(): void; deleteTempObjById(id: string): void; private _mapInit; private _circleButtonsTool; get circleButtonsTool(): CircleButtonsTool; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); setLayoutStyle(value: LayoutDivStyleType): void; constructor(id?: SceneObjectKey); get finalCssText(): string; get finalCssTextChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace TempObjsCreatorTool { const createDefaultProps: () => { show: boolean; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; cssText: string; showDeleteButton: boolean; clickFuncStr: string; buttons: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; backgroundRadius: number; borderWidth: number; borderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; padding: number; gap: number; direction: CircleButtonsFlexDirectionType; buttonRadius: number; buttonBackgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonBorderWidth: number; buttonBorderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonTextColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; buttonFontSize: number; 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 TempObjsCreatorTool extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};