import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface ProgressProps extends CommonProps { /** * Set intent for your custom progress. */ intent?: 'primary' | 'success' | 'warning' | 'danger' | 'error'; /** * Size of progress. */ size?: 'small' | 'medium'; /** * Status of progress. Use `custom` if you wanna control the intent of the progress on your own. */ status?: 'active' | 'exception' | 'custom'; /** * The progress completion percentage: 0-100. */ value: number; /** * Progress type. */ variant?: 'bar' | 'circle'; /** * Whether to display the progress value and the status icon. */ withInfo?: boolean; } declare const Progress: ({ intent, size, withInfo, status, value, variant, id, className, style, sx, "data-test-id": dataTestId, }: ProgressProps) => ReactElement; export default Progress;