import * as THREE from "three"; import { CBARLightAsset, CBARLightAssetProperties } from "./CBARLightAsset"; import { CBARContext } from "../../CBARContext"; interface CBARPointLightProperties extends CBARLightAssetProperties { distance?: number; power?: number; decay?: number; } export declare class CBARPointLight extends CBARLightAsset { constructor(context: CBARContext); protected _light: THREE.PointLight; get light(): THREE.Light; load(basePath: string | undefined, json: CBARPointLightProperties): Promise; data(): any; get description(): string; } export {};