@mui/x-charts
Version:
The community edition of MUI X Charts components.
10 lines • 802 B
TypeScript
import * as React from 'react';
import { ChartsSurfaceProps } from "../ChartsSurface/index.js";
import { GaugeProviderProps } from "./GaugeProvider.js";
import { MergeSignaturesProperty } from "../internals/plugins/models/index.js";
import { ChartCorePluginSignatures } from "../internals/plugins/corePlugins/index.js";
export interface GaugeContainerProps extends Omit<ChartsSurfaceProps, 'children'>, Omit<MergeSignaturesProperty<ChartCorePluginSignatures, 'params'>, 'series' | 'dataset' | 'colors' | 'theme'>, Omit<GaugeProviderProps, 'children'>, Omit<React.SVGProps<SVGSVGElement>, 'width' | 'height'> {
children?: React.ReactNode;
}
declare const GaugeContainer: React.ForwardRefExoticComponent<Omit<GaugeContainerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
export { GaugeContainer };