import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged, ReactiveVariable } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { CzmTexture } from 'vtxf-xe2/dist-node/xe2-cesium-objects'; import { SceneObjectKey, SceneObjectWithId } from 'vtxf-xe2/dist-node/xe2-utils'; import { HttpUrlProxyType, UrlWithFileOrProxy } from '../../../shared/UrlWithFileOrProxy'; import { LayoutDiv } from '../LayoutDiv'; import { LayoutDivStyleType, MyCustomDivLayoutType } from '../MyCustomDiv'; export declare class EChartsDiv extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; visibility: boolean; interaction: boolean; containerId: string | null; allowPicking: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: ReactiveVariable<[number, number, number, number] | null>; color: ReactiveVariable<[number, number, number, number] | null>; cssText: string; updateMyChartFuncStr: string; rootPath: string; proxy: HttpUrlProxyType; targetTextureId: string; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: ReactiveVariable; extras: ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); static defaultUpdateMyChartFuncStr: string; static defaultUpdateMyChartFuncStrMd: string; private _urlWithFileAndProxy; get urlWithFileAndProxy(): UrlWithFileOrProxy; get finalRootPath(): string; private _updateMyChartFunc; get updateMyChartFunc(): ((myChart: any, ROOT_PATH: string) => void) | undefined; set updateMyChartFunc(value: ((myChart: any, ROOT_PATH: string) => void) | undefined); get updateMyChartFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[((myChart: any, ROOT_PATH: string) => void) | undefined, ((myChart: any, ROOT_PATH: string) => void) | undefined]>; private _layoutDiv; get layoutDiv(): LayoutDiv; static defaultSize: { width: string; height: string; }; static defaults: { defaultLayoutStyle: LayoutDivStyleType; viewerTagsEnums: [string, string][]; }; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); setLayoutStyle(value: LayoutDivStyleType): void; private _textureWithId; get textureWithId(): SceneObjectWithId; 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 EChartsDiv { const createDefaultProps: () => { show: boolean; visibility: boolean; interaction: boolean; containerId: string | null; allowPicking: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: ReactiveVariable<[number, number, number, number] | null>; color: ReactiveVariable<[number, number, number, number] | null>; cssText: string; updateMyChartFuncStr: string; rootPath: string; proxy: HttpUrlProxyType; targetTextureId: string; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: ReactiveVariable; extras: ReactiveVariable; }; } export interface EChartsDiv extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};