10 lines
827 B
TypeScript
10 lines
827 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' | 'experimentalFeatures'>, 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 }; |