import { type PropsWithChildren } from 'react'; import type { GaugeChartProps, GaugeChartRef } from './types/gauge-chart.js'; /** * A Gauge Chart is a circular chart that displays information on a numeric * scale. * It's great for showing performance metrics or progress towards a goal. * * @public */ export declare const GaugeChart: ((props: PropsWithChildren & import("react").RefAttributes) => import("react").ReactElement | null) & { ColorRule: { (_props: import("../index.js").ColorRuleProps): null; displayName: string; }; Intent: { (props: import("../../index.js").IntentProps): null; displayName: string; }; Label: (_props: PropsWithChildren) => null; ThresholdIndicator: (_props: import("./slots/ThresholdIndicator.js").GaugeChartThresholdIndicatorProps) => null; Toolbar: { (props: import("../index.js").CompactToolbarProps): null; displayName: string; }; Tooltip: { (props: import("./slots/Tooltip.js").GaugeChartTooltipProps): null; displayName: string; }; };