/** * GaugeChart ThresholdIndicator slot definition. * @public */ export interface GaugeChartThresholdIndicatorProps { /** * The value of the threshold. */ value: number; /** * When set to true, it shows the indicator of the threshold. * @defaultValue false */ showIndicator?: boolean; /** * The color of the threshold. * @defaultValue 'Categorical.Color11' */ color?: string; } export declare const ThresholdIndicator: (_props: GaugeChartThresholdIndicatorProps) => null;