/** * @name Progress * @description Progress indicators express an unspecified wait time or display the length of a process. * @category Informational * @tags feedback, loading, progress, spinner * @example */ export declare class Progress { value: number; /** * A label describing the progress bar. */ label: string; helperText: string; /** * * Possible values are: `"sm"` and `"md"` in pixel. Defaults to `"md"`. */ size: 'sm' | 'md'; hideLabel: boolean; status: 'active' | 'success' | 'error'; getRenderIcon(): any; render(): any; }