import { CustomDiv, Player } from "xbsj-xe2/dist-node/xe2-base-objects"; import { ESSceneObject } from "xbsj-xe2/dist-node/xe2-base-objects"; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; export declare type PlayerDivClass = new (subContainer: HTMLDivElement, player: Player, playerUi: XbsjPlayerUI) => PlayerDiv; export declare class XbsjPlayerUI extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; show: boolean | undefined; playerId: string | undefined; playerDivClassStr: string | undefined; }; private _customDiv; get customDiv(): CustomDiv<{ destroy(): undefined; }>; get json(): JsonType; set json(value: JsonType); private _playerDivClassReact; get playerDivClass(): PlayerDivClass | undefined; set playerDivClass(value: PlayerDivClass | undefined); get playerDivClassChanged(): import("xbsj-xe2/dist-node/xe2-base-utils").Listener<[PlayerDivClass | undefined, PlayerDivClass | undefined]>; constructor(id?: string); getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; } declare const extraComponentProps: {}; export declare namespace XbsjPlayerUI { const createDefaultProps: () => { execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; show: boolean | undefined; playerId: string | undefined; playerDivClassStr: string | undefined; }; } export interface XbsjPlayerUI extends ReactivePropsToNativePropsAndChanged & typeof extraComponentProps> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & typeof extraComponentProps & { type: string; }>; export {};