import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { LayoutDiv } from '../LayoutDiv'; import { MyWindow } from '../MyWindow'; export declare type MyConfirmResultType = 'ok' | 'cancel' | 'close'; export declare class MyConfirm extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; text: string; title: string; 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); private _resultEvent; get resultEvent(): Event<[MyConfirmResultType]>; private _myWindow; get myWindow(): MyWindow; private _layoutDiv; get layoutDiv(): LayoutDiv; set container(value: HTMLElement | undefined); get container(): HTMLElement | undefined; get containerChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[HTMLElement | undefined, HTMLElement | undefined]>; static defaults: { viewerTagsEnums: [string, string][]; }; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyConfirm { const createDefaultProps: () => { show: boolean; text: string; title: string; 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 MyConfirm extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};