export interface ISpotlightOptions {
    id: string;
    name?: string;
    transition?: number;
    color?: string;
    width?: number;
    showLabel?: boolean;
    fillColor?: string;
    textStyle?: string;
    textColor?: string;
    dashPattern?: number[];
}
