import React from 'react'; import { BsPrefixPropsWithChildren } from './helpers'; export interface ProgressBarProps extends React.HTMLAttributes, BsPrefixPropsWithChildren { min?: number; now?: number; max?: number; label?: React.ReactNode; srOnly?: boolean; striped?: boolean; animated?: boolean; variant?: 'success' | 'danger' | 'warning' | 'info' | string; isChild?: boolean; } declare const ProgressBar: React.ForwardRefExoticComponent>; export default ProgressBar;