/// interface GaugeProps { amount: number; totalAmount: number; height?: string; borderRadius?: string; } export default function Gauge({ amount, totalAmount, height, borderRadius, }: GaugeProps): JSX.Element; export {};