import React from 'react'; export interface IProgressBar { className?: string; color?: string; disabled?: boolean; label?: string; min?: number; max?: number; now: number; style?: React.CSSProperties; variant?: 'primary' | 'info' | 'success' | 'warning' | 'danger'; [x: string]: any; } export declare const ProgressBar: React.FC;