import { RenderComponent } from '..'; import { World } from '../../world'; import { Lighttype, LightJson, renderLight } from './type'; declare class LightComponent extends RenderComponent { json: LightJson; object3D: renderLight; needUpdateShadow: boolean; constructor(json?: LightJson); update(world: World): void; } export { LightComponent };