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