import { WebInputBaseDescription } from "./WebInputBaseDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebInputDescription extends WebInputBaseDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private av;
    get value(): string;
    set value(a: string);
    private aq;
    get displayType(): string;
    set displayType(a: string);
    private ar;
    get inputMode(): string;
    set inputMode(a: string);
    private au;
    get pattern(): string;
    set pattern(a: string);
    private aj;
    get minLength(): number;
    set minLength(a: number);
    private ai;
    get maxLength(): number;
    set maxLength(a: number);
    private at;
    get min(): string;
    set min(a: string);
    private as;
    get max(): string;
    set max(a: string);
    private ak;
    get step(): number;
    set step(a: number);
    private ae;
    get autofocus(): boolean;
    set autofocus(a: boolean);
    private ao;
    get autocomplete(): string;
    set autocomplete(a: string);
    private af;
    get validateOnly(): boolean;
    set validateOnly(a: boolean);
    private ap;
    get changeRef(): string;
    set changeRef(a: string);
}
