import { ILightScene } from "./ILightScene"; export interface ILightEngine { update?: () => void; assignLightScene(id: string): boolean; createLightScene(properties: { name?: string; id?: string; standard?: boolean; }): ILightScene; removeLightScene(id: string): boolean; } //# sourceMappingURL=ILightEngine.d.ts.map