import type { ColorValue } from "../math/Color.ts"; import { Light } from "./Light.ts"; /** Flat scene-wide brightness added uniformly to all vertices. */ export declare class AmbientLight extends Light { type: string; lightType: number; constructor(color?: ColorValue | number, intensity?: number); } //# sourceMappingURL=AmbientLight.d.ts.map