import { PointLight } from 'three'; import { BaseLightJson, LightJson, Lighttype, renderLight, ShadowJson } from '../type'; interface PointJson extends BaseLightJson { type: 'Point'; distance: number; decay: number; shadow: ShadowJson; } declare const getPointJson: () => PointJson; declare const createPoint: (json: LightJson) => PointLight; declare const updatePoint: (json: LightJson, light: renderLight) => void; export { PointJson, getPointJson, createPoint, updatePoint };