import { type PropsWithChildren } from 'react'; import type { GaugeChartInternalConfig } from '../types/gauge-chart-config-internal.js'; export interface GaugeChartProvidersProps { config: GaugeChartInternalConfig; width: number; height: number; } export declare const GaugeChartProviders: { ({ config, width, height, children, }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; };