import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebToggleButtonDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private o;
    get value(): string;
    set value(a: string);
    private l;
    get selected(): boolean;
    set selected(a: boolean);
    private k;
    get disabled(): boolean;
    set disabled(a: boolean);
}
