import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface ProgressBarProps extends CommonProps { intent: 'primary' | 'danger' | 'success' | 'warning' | 'error'; size: 'small' | 'medium'; status: 'active' | 'exception' | 'custom'; value: number; withInfo: boolean; } declare const ProgressBar: ({ intent, size, status, withInfo, value, id, className, style, sx, "data-test-id": dataTestId, }: ProgressBarProps) => ReactElement; export default ProgressBar;