/** * @internal */ interface GaugeValueArcProps { color: string; min: number; max: number; value: number; } /** * @internal */ export declare const GaugeValueArc: ({ color, value, min, max, }: GaugeValueArcProps) => import("react/jsx-runtime").JSX.Element; export {};