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 { LayoutDiv } from '../LayoutDiv'; import { MyCustomDivLayoutType } from '../MyCustomDiv'; export declare type MyPropsPanelFilterPropsFuncType = (props: [string, string | number | boolean][]) => [string, string | number | boolean][]; export declare type MyPropsPanelGetRowDivFuncType = (k: string, v: string | number | boolean, n: number) => void; export declare type MyPropsPanelSetInnerTableFuncType = (container: HTMLDivElement, props: [string, string | number | boolean][]) => void; export declare class MyPropsPanel extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; props: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[string, string | number | boolean][]>; filterProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; propsFuncStr: string; setInnerTableFuncStr: 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 defaults: { viewerTagsEnums: [string, string][]; }; static defaultCssText: string; static defaultProps: [string, string][]; private _propsFunc; get propsFunc(): MyPropsPanelFilterPropsFuncType | undefined; set propsFunc(value: MyPropsPanelFilterPropsFuncType | undefined); get propsFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[MyPropsPanelFilterPropsFuncType | undefined, MyPropsPanelFilterPropsFuncType | undefined]>; private _filterPropsFuncStrInit; private _setInnerTableFunc; get setInnerTableFunc(): MyPropsPanelSetInnerTableFuncType | undefined; set setInnerTableFunc(value: MyPropsPanelSetInnerTableFuncType | undefined); get setInnerTableFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[MyPropsPanelSetInnerTableFuncType | undefined, MyPropsPanelSetInnerTableFuncType | undefined]>; private _setInnerTableFuncInit; private _div; get div(): 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]>; constructor(id?: SceneObjectKey); get finalCssText(): string; getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyPropsPanel { const createDefaultProps: () => { show: boolean; props: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[string, string | number | boolean][]>; filterProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; propsFuncStr: string; setInnerTableFuncStr: 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 MyPropsPanel extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};