/** * 额度/用量计量条:LED 分段小灯 + 同色加粗百分比,用量分级自动变色(≤80% 青 / >80% 琥珀 / >95% 红),已用格带辉光。 */ export interface QuotaMeterProps { /** 左侧小标签,如 "5h" / "周" */ label?: string; /** 用量百分比 0–100 */ pct?: number; /** 右侧弱化说明,如 "3h 8m 后重置" */ detail?: string; /** 分段格数,默认 16 */ cells?: number; style?: React.CSSProperties; } export declare function QuotaMeter(props: QuotaMeterProps): JSX.Element;