import { AmbientLight as ThreeAmbientLight } from "three"; import LightBase from "../core/LightBase"; import IAmbientLight from "../../interface/IAmbientLight"; export default class AmbientLight extends LightBase implements IAmbientLight { static componentName: string; static defaults: Partial>; static schema: Required>; constructor(); }