import React from 'react'; import type { BaseGaugeProps } from '../gauge.types'; /** * Props for the SimpleGauge component. * A gauge chart with customizable title and detail text labels. */ interface SimpleGaugeProps extends BaseGaugeProps { /** * Title text displayed on the gauge. * @default 'Metric' */ title?: string; /** * Detail text showing the value. * @default '30%' */ detailText?: string; } export declare const SimpleGauge: ((props: SimpleGaugeProps & { theme?: Partial; } & { width?: number | string; height?: number | string; }) => React.JSX.Element) & { displayName: string; }; export {}; //# sourceMappingURL=simple.gauge.d.ts.map