import * as React from 'react'; import type { ChartsSurfaceProps } from "../ChartsSurface/index.mjs"; import type { GaugeProviderProps } from "./GaugeProvider.mjs"; import type { MergeSignaturesProperty } from "../internals/plugins/models/index.mjs"; import type { ChartCorePluginSignatures } from "../internals/plugins/corePlugins/index.mjs"; export interface GaugeContainerProps extends Omit, Omit, 'series' | 'dataset' | 'colors' | 'theme' | 'seriesConfig' | 'experimentalFeatures'>, Omit, Omit, 'width' | 'height'> { children?: React.ReactNode; } declare const GaugeContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export { GaugeContainer };