import { WebMaskInputBaseDescription } from "./WebMaskInputBaseDescription";
import { DatePartDeltasDescription } from "./DatePartDeltasDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebDateTimeInputDescription extends WebMaskInputBaseDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private as;
    get inputFormat(): string;
    set inputFormat(a: string);
    private am;
    get value(): Date;
    set value(a: Date);
    private al;
    get minValue(): Date;
    set minValue(a: Date);
    private ak;
    get maxValue(): Date;
    set maxValue(a: Date);
    private ar;
    get displayFormat(): string;
    set displayFormat(a: string);
    private ag;
    get spinDelta(): DatePartDeltasDescription;
    set spinDelta(a: DatePartDeltasDescription);
    private ai;
    get spinLoop(): boolean;
    set spinLoop(a: boolean);
    private at;
    get locale(): string;
    set locale(a: string);
    private aq;
    get changeRef(): string;
    set changeRef(a: string);
}
