export interface ThresholdBandGeometry { innerRadius: number; outerRadius: number; midRadius: number; gap: number; } /** * Computes the geometry of the threshold band arc drawn just inside the gauge arc. * * All visual parameters (offset from arc, gap between segments, band thickness) * scale linearly with the arc width so the band looks proportional at any size. */ export declare const computeThresholdBandGeometry: (arcInnerRadius: number, arcOuterRadius: number) => ThresholdBandGeometry; //# sourceMappingURL=compute-threshold-band-geometry.d.ts.map