import { FieldDisplay, Threshold } from '@grafana/data';
import { RadialColorDefs } from './RadialColorDefs';
import { GaugeDimensions } from './utils';
export interface Props {
    dimensions: GaugeDimensions;
    angleRange: number;
    startAngle: number;
    endAngle: number;
    fieldDisplay: FieldDisplay;
    roundedBars?: boolean;
    glowFilter?: string;
    colorDefs: RadialColorDefs;
    thresholds: Threshold[];
}
export declare function ThresholdsBar({ dimensions, fieldDisplay, startAngle, angleRange, roundedBars, glowFilter, colorDefs, thresholds, }: Props): import("react/jsx-runtime").JSX.Element;
