import { PointLight as ThreePointLight } from "three"; import IPointLight from "../../interface/IPointLight"; import PointLightBase from "../core/PointLightBase"; export default class PointLight extends PointLightBase implements IPointLight { static componentName: string; static defaults: Partial>; static schema: Required>; constructor(); get shadows(): boolean; set shadows(val: boolean); }