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 { LayoutDivStyleType } from '../../MyCustomDiv'; export declare class MyTable extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; roll: boolean; speed: number; titles: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; widths: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; contents: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; layoutCssText: string; allowPicking: boolean; containerId: string | null; shadowDom: boolean; cssAllInitial: 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); private _layoutDiv; get layoutDiv(): LayoutDiv; static defaultSize: { width: string; height: string; }; static defaults: { defaultLayoutStyle: LayoutDivStyleType; defaultTitles: string[]; defaultWidths: string[]; defaultContents: string[][]; viewerTagsEnums: [string, string][]; }; static defaultContentsMd: string; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); setLayoutStyle(value: LayoutDivStyleType): void; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyTable { const createDefaultProps: () => { show: boolean; roll: boolean; speed: number; titles: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; widths: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; contents: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; layoutCssText: string; allowPicking: boolean; containerId: string | null; shadowDom: boolean; cssAllInitial: 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 MyTable extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};