import React from 'react'; import type { BaseGaugeProps } from '../gauge.types'; /** * Props for the DigitalGauge component. * A gauge chart with smooth animations built using SVG. */ interface DigitalGaugeProps extends BaseGaugeProps { /** * Whether to show the inner arc. * @default false */ showInnerArc?: boolean; /** * Animation duration in milliseconds. * @default 1000 */ animationDuration?: number; } export declare const DigitalGauge: ((props: DigitalGaugeProps & { theme?: Partial; } & { width?: number | string; height?: number | string; }) => React.JSX.Element) & { displayName: string; }; export {}; //# sourceMappingURL=digital.gauge.d.ts.map