export interface StepOptions { value: number; color?: string; name?: string; } export interface ThresholdOptions { mode?: 'percent' | 'absolute'; defaultColor?: string; max?: number; steps?: StepOptions[]; } export interface ThresholdColorPalette { defaultColor: string; palette: string[]; } //# sourceMappingURL=thresholds.d.ts.map