import type { IColor } from "../../../../Core/Interfaces/Colors";
export interface ILightGradient {
    start: string | IColor;
    stop: string | IColor;
}
export interface ILightArea {
    gradient: ILightGradient;
    radius: number;
}
