import { ReactNode } from 'react'; import { ThresholdMetadata, TooltipConfigData } from '../types/meter-bar-chart-internal.js'; export interface MeterBarChartInternalConfigContextProps { max: number; min: number; tooltip?: TooltipConfigData; label: ReactNode; thresholds: ThresholdMetadata; thresholdsIndicators: ThresholdMetadata; } export declare const MeterBarChartInternalConfigContext: import("react").Context; export declare const useMeterBarChartInternalConfig: () => MeterBarChartInternalConfigContextProps;