import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare abstract class WebButtonBaseDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private o;
    get displayType(): string;
    set displayType(a: string);
    private r;
    get href(): string;
    set href(a: string);
    private p;
    get download(): string;
    set download(a: string);
    private t;
    get target(): string;
    set target(a: string);
    private s;
    get rel(): string;
    set rel(a: string);
    private k;
    get disabled(): boolean;
    set disabled(a: boolean);
    private n;
    get clickedRef(): string;
    set clickedRef(a: string);
    private q;
    get focusRef(): string;
    set focusRef(a: string);
    private m;
    get blurRef(): string;
    set blurRef(a: string);
}
