export declare class CSS3DLoader { constructor(sdk: any); disposables: any[]; inputs: { name: string; title: string; text: string; iframeId: string; wrapperId: string; visible: boolean; width: number; height: number; localPosition: { x: number; y: number; z: number; }; localRotation: { x: number; y: number; z: number; }; backgroundColor: string; textColor: string; }; onInit: () => void; events: { 'INTERACTION.CLICK': boolean; }; emits: { css3devents: boolean; }; onTick: (delta: any) => void; onEvent(eventType: any, data: any): void; onInputsUpdated(): void; onDestroy(): void; } export declare const css3DType = "mp.css3d"; export declare const css3DFactory: (sdk: any) => () => CSS3DLoader;