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