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 h;
    get active(): boolean;
    set active(a: boolean);
    private i;
    get disabled(): boolean;
    set disabled(a: boolean);
    private j;
    get selected(): boolean;
    set selected(a: boolean);
    private n;
    get value(): string;
    set value(a: string);
}
