import React from 'react'; import { IntentType, ITestableProps } from '../../../types'; export declare const ProgressBarSizeEnum: { tiny: string; normal: string; medium: string; big: string; }; export type ProgressBarSizeEnumType = keyof typeof ProgressBarSizeEnum | string | number; export interface IProgressBarProps extends ITestableProps, React.HtmlHTMLAttributes { intent?: IntentType; progress: number; withLabel?: boolean; striped?: boolean; size?: ProgressBarSizeEnumType; }