import { DirectionalLight } from '../../thirdparty/three/imports'; import { DirectionalLightShadow3D } from './DirectionalLightShadow3D'; import { Light3D } from './Light3D'; declare module '@feng3d/ecs' { interface ComponentMap { DirectionalLight3D: DirectionalLight3D; } } /** * 3D点光源,包装`three`中`PointLight` */ export declare class DirectionalLight3D extends Light3D { _light: DirectionalLight; shadow: DirectionalLightShadow3D; init(): void; destroy(): void; } //# sourceMappingURL=DirectionalLight3D.d.ts.map