/** * ProgressBar & MiniProgress Components * * Unified progress bar with default/gradient/mini variants, * colorByValue thresholds, and dual API (percent 0-100 or value 0-1). * * @since v2.7.22 - Unified with variants and colorByValue */ import React from 'react'; export interface ProgressBarProps { /** Progress as percentage 0-100 */ percent?: number; /** Progress as fraction 0-1 (alternative to percent) */ value?: number; width?: number; label?: string; showPercent?: boolean; color?: string; /** Color based on value: <33% error, 34-66% warning, 67%+ success */ colorByValue?: boolean; /** Visual variant */ variant?: 'default' | 'gradient' | 'mini'; } declare function ProgressBarBase({ percent, value, width, label, showPercent, color, colorByValue, variant }: ProgressBarProps): React.ReactElement; export declare const ProgressBar: React.MemoExoticComponent; export interface MiniProgressProps { percent: number; width?: number; } declare function MiniProgressBase({ percent, width }: MiniProgressProps): React.ReactElement; export declare const MiniProgress: React.MemoExoticComponent; export {}; //# sourceMappingURL=ProgressBar.d.ts.map