import { RectAreaLight } from 'three'; import { BaseLightJson, LightJson, Lighttype, renderLight } from '../type'; interface RectJson extends BaseLightJson { type: 'Rect'; width: number; height: number; } declare const getRectJson: () => RectJson; declare const createRect: (json: LightJson) => RectAreaLight; declare const updateRect: (json: LightJson, light: renderLight) => void; export { RectJson, getRectJson, createRect, updateRect };