import { type PropsWithChildren } from 'react'; import type { MeterBarChartInternalConfig } from '../types/meter-bar-chart-internal.js'; import { type MeterBarChartProps } from '../types/meter-bar-chart.js'; interface MeterBarChartProvidersProps { config: MeterBarChartInternalConfig; seriesActions?: MeterBarChartProps['seriesActions']; } export declare const MeterBarChartProviders: ({ config, seriesActions, children, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};