import { Color } from "@shapediver/viewer.shared.types"; import { IAmbientLight } from "../../interface/types/IAmbientLight"; import { AbstractLight } from "../AbstractLight"; export declare class AmbientLight extends AbstractLight implements IAmbientLight { constructor(properties: { color?: Color; intensity?: number; name?: string; order?: number; id?: string; version?: string; }); clone(): IAmbientLight; } //# sourceMappingURL=AmbientLight.d.ts.map