import { type PropsWithChildren } from 'react'; import type { MeterBarChartData } from '../types/meter-bar-chart.js'; interface MeterBarChartInternalDataProvidersProps { value: number | MeterBarChartData; displayValue: number; valueAccessor?: string; name?: string; color?: string; } export declare const MeterBarChartInternalDataProviders: ({ value, displayValue, valueAccessor, name, color, children, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};