import Light, { LightOpts } from '../Light'; export interface PointLightOpts extends LightOpts { range: number; } declare class PointLight extends Light { range: number; castShadow: boolean; readonly type = "POINT_LIGHT"; constructor(opts?: Partial); clone(): PointLight; } export default PointLight;