import { type PropsWithChildren } from 'react'; import type { MultiMeterBarChartProps } from './types/multi-meter-bar-chart.js'; /** * The `MultiMeterBarChart` is a more complex version of the single meter bar, * it allows for different data inputs to be considered when presenting progress * toward a goal, consumption of a total, etc. * @public */ export declare const MultiMeterBarChart: ((props: MultiMeterBarChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null) & { Icon: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Label: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Legend: { (): null; displayName: string; }; Max: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Min: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Segment: { (props: import("./types/multi-meter-bar-chart.js").MultiMeterBarSegmentProps): null; displayName: string; }; Value: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Tooltip: { (props: import("./types/multi-meter-bar-chart.js").MultiMeterBarChartTooltipProps): null; displayName: string; }; };