export declare class RuxProgress { /** * Current progress value between 0 and 100 (or the max, if defined below). */ value?: number; /** * For progress bars where progress bars have a maximum value greater or less than 100 */ max: number; /** * Displays text output of progress as a percentage. Note: when using a max value other than 100 output is displated as value/max (e.g., 1450/2000) */ hideLabel: boolean; getProgressAsString(): string | number | undefined; checkValueNotOverMax(max: number, value: number): void; connectedCallback(): void; watchHandler(): void; render(): any; }