import { TestId } from './utils'; type GaugeData = { color: string; label: string; }; export type GaugeProps = { data: GaugeData[]; hideArrow?: boolean; inverse: boolean; label?: string; max: number; min: number; segmentEnds: number[]; units?: string; value: number; } & TestId; export type GaugeSVGProps = { angle: number; colors: string[]; hideArrow?: boolean; labels: string[]; value: number; }; export type GaugeArrowProps = { hide?: boolean; transform?: string; }; export type GaugeSegmentProps = { d: string; fill: string; }; export type GaugeLabelProps = { label?: string; x?: number; y?: number; };