import { Overlay, ProgressBarMode, ProgressbarSize } from './constants'; export interface ProgressbarProps { /** The value of the progressbar given in percent. Value between 0 and 100 */ value: number; /** Size of the progressbar. Default is large */ size?: ProgressbarSize; /** Changes the visuals of the ProgressBar. Default is onLight */ mode?: ProgressBarMode; /** Loader is displayed with grey background covering the entire screen */ overlay?: keyof typeof Overlay; /** Aria label for the progressbar */ ariaLabel?: string; /** Sets the data-testid attribute */ testId?: string; } declare const Progressbar: React.FC; export default Progressbar;