import { Color } from 'three'; import { TAbstractLightParams } from './TAbstractLightParams'; export type TAmbientLightParams = TAbstractLightParams & Readonly<{ color: Color; intensity?: number; }>;