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 { containerWidth: number; meterBarChartInternal: MeterBarChartInternalConfig; meterBarChartProps: MeterBarChartProps; thresholdIndicators: number[]; matchingThresholdColor?: string; } export declare const MeterBarChartProviders: ({ containerWidth, matchingThresholdColor, meterBarChartInternal, meterBarChartProps, thresholdIndicators, children, }: PropsWithChildren) => import("react/jsx-runtime.js").JSX.Element; export {};