import * as THREE from "three"; import { CBARLightAsset, CBARLightAssetProperties } from "./CBARLightAsset"; import { CBARContext } from "../../CBARContext"; export declare class CBARAmbientLight extends CBARLightAsset { constructor(context: CBARContext); protected _light: THREE.AmbientLight; get light(): THREE.AmbientLight; get description(): string; load(basePath: string | undefined, json: CBARLightAssetProperties): Promise; }