import { type PropsWithChildren } from 'react'; import { type GaugeChartToolbarProps } from '../GaugeChartLayout/GaugeChartToolbar.js'; interface GaugeChartOverlayProps { value: number; color: string; showLoading?: boolean; intents: GaugeChartToolbarProps['intents']; toolbar: GaugeChartToolbarProps['toolbar']; } export declare const GaugeChartOverlay: { (props: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};