declare type GaugeProps = { aria: { [key: string]: string; }; className?: string; chartData?: { name: string; value: number[] | number; }[]; dark?: Boolean; data?: { [key: string]: string; }; disableAnimation?: boolean; fullCircle?: boolean; height?: string; id?: string; max?: number; min?: number; prefix?: string; showLabels?: boolean; style?: string; suffix?: string; title?: string; tooltipHtml?: string; colors: string[]; minorTickInterval: any; circumference: number[]; }; declare const Gauge: ({ aria, className, chartData, dark, data, disableAnimation, fullCircle, height, id, max, min, prefix, showLabels, style, suffix, title, tooltipHtml, colors, minorTickInterval, circumference, ...props }: GaugeProps) => JSX.Element; export default Gauge;