import { BarData } from '../DonutChart/types'; /** * Interface representing the properties for the Gauge component. */ export interface IGauge { /** * The current value to display on the gauge. * This determines how far the gauge is filled. */ value?: number; /** * An array of objects representing each segment in the gauge. * Each segment includes a name, value, and color. */ data?: BarData[]; /** * Starting value of the gauge * @default 0 */ startingValue?: number; }