import { Matrix4 } from 'cesium'; /** * @description 体渲染:透明球体 + 奇奇怪怪的光波渲染 */ declare class SphereWow { private drawCommand; private modelMatrix; private pickId; private show; constructor({ modelMatrix, show }?: { modelMatrix?: Matrix4 | undefined; show?: boolean | undefined; }); createCommand(context: any): void; destroy(): void; update(frameState: any): void; } export { SphereWow };