import { AmbientLight } from 'three'; import { BaseLightJson, LightJson } from '../type'; interface AmbientJson extends BaseLightJson { type: 'Ambient'; } declare const getAmbientJson: () => AmbientJson; declare const createAmbient: (json: LightJson) => AmbientLight; export { AmbientJson, getAmbientJson, createAmbient };