import { CBARAsset } from "../CBARAsset"; import * as THREE from "three"; import { CBARObject3DProperties } from "../../components"; export interface CBARLightAssetProperties extends CBARObject3DProperties { color?: string; intensity?: number; } export declare abstract class CBARLightAsset extends CBARAsset { abstract get light(): THREE.Light; load(basePath: string | undefined, json: CBARLightAssetProperties): Promise; data(): any; }