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: GaugeChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null) & { Label: (_props: PropsWithChildren) => null; Threshold: (_props: import("./slots/Threshold.js").GaugeChartThresholdProps) => null; };