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) => import("react").ReactElement | null) & { Label: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; Legend: { (_props: import("./slots/Legend.js").MultiMeterBarChartLegendProps): null; displayName: string; }; Max: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; Min: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; Segment: { (props: import("./types/multi-meter-bar-chart.js").MultiMeterBarSegmentProps): null; displayName: string; }; Value: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; Tooltip: { (props: import("./types/multi-meter-bar-chart.js").MultiMeterBarChartTooltipProps): null; displayName: string; }; ColorRule: { (_props: import("../../index.js").ColorRuleProps): null; displayName: string; }; Intent: { (props: import("../../../index.js").IntentProps): null; displayName: string; }; Toolbar: { (props: import("../../index.js").MeterBarToolbarSlotProps): null; displayName: string; }; };