import { type PropsWithChildren } from 'react'; import type { SeriesActionsTemplate } from '../../core/types/series-actions-template.js'; import type { GaugeChartInternalConfig } from '../types/gauge-chart-config-internal.js'; import type { GaugeChartData } from '../types/gauge-chart.js'; export interface GaugeChartProvidersProps { config: GaugeChartInternalConfig; width: number; height: number; value: number | GaugeChartData; valueAccessor?: string; explicitColor?: string; loading: boolean; seriesActions?: (series: string | number) => SeriesActionsTemplate; } export declare const GaugeChartProviders: { ({ config, width, height, value, valueAccessor, explicitColor, seriesActions, children, loading, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; };