import Light, { LightOpts } from '../Light'; export interface AmbientLightOpts extends LightOpts { } declare class AmbientLight extends Light { castShadow: boolean; readonly type = "AMBIENT_LIGHT"; } export default AmbientLight;