import { HttpUrlProxyType, UrlWithFileOrProxy } from '../../../../shared'; import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged, ReactiveVariable } 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 MyResourceInfo extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; imageUri: string; proxy: HttpUrlProxyType; title: string; unit: string; imageWidth: number; num: number; textColor: [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: ReactiveVariable; extras: ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); private _urlWithFileAndProxy; get urlWithFileAndProxy(): UrlWithFileOrProxy; get finalImageUri(): string; get finalImageUriChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; private _layoutDiv; get layoutDiv(): LayoutDiv; static defaults: { defaultLayoutStyle: LayoutDivStyleType; viewerTagsEnums: [string, 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 MyResourceInfo { const createDefaultProps: () => { show: boolean; imageUri: string; proxy: HttpUrlProxyType; title: string; unit: string; imageWidth: number; num: number; textColor: [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: ReactiveVariable; extras: ReactiveVariable; }; } export interface MyResourceInfo extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};