import React from 'react'; import type { BaseGaugeProps } from '../gauge.types'; /** * Props for the RadialGauge component. * A composite gauge with both radial progress bar and traditional gauge display. */ interface RadialGaugeProps extends BaseGaugeProps { } export declare const RadialGauge: ((props: RadialGaugeProps & { theme?: Partial; } & { width?: number | string; height?: number | string; }) => React.JSX.Element) & { displayName: string; }; export {}; //# sourceMappingURL=radial.gauge.d.ts.map