import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare abstract class WebProgressBaseDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private p;
    get max(): number;
    set max(a: number);
    private q;
    get value(): number;
    set value(a: number);
    private v;
    get variant(): string;
    set variant(a: string);
    private o;
    get animationDuration(): number;
    set animationDuration(a: number);
    private l;
    get indeterminate(): boolean;
    set indeterminate(a: boolean);
    private k;
    get hideLabel(): boolean;
    set hideLabel(a: boolean);
    private u;
    get labelFormat(): string;
    set labelFormat(a: string);
}
