export declare const state: { width: number; height: number; }; /** * 离屏canvas和普通canvas共用的绘制图纸方法 * 优先级:offScreenCanvas > canvas */ export declare function main(d: any): void; export declare function select({ modelOrName }: { modelOrName: any; }): void; /** ------------------------------------------实体解析结束-------------------------------------------------------- **/ export declare function setLayerVisible(data: { layerName: string; visible: boolean; }): void; export declare function callModuleMethod(data: { moduleName: string; methodName: string; }): void; export declare function resetCamera(): void; export declare function resize({ width, height }: { width: any; height: any; }): void; export declare function render(): void; export declare function stopRender(): void; export declare function renderLoop(): void; export declare function helpRender(): void; export declare function dispose(): void; /** ---------------------------- 设置弹窗配置变化 ---------------------------------- */ export declare function changeClearColor(color: 0x000000 | 0xffffff): void;