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 ax;
    get inputFormat(): string;
    set inputFormat(a: string);
    private ar;
    get value(): Date;
    set value(a: Date);
    private aq;
    get min(): Date;
    set min(a: Date);
    private ap;
    get max(): Date;
    set max(a: Date);
    private aw;
    get displayFormat(): string;
    set displayFormat(a: string);
    private al;
    get spinDelta(): DatePartDeltasDescription;
    set spinDelta(a: DatePartDeltasDescription);
    private an;
    get spinLoop(): boolean;
    set spinLoop(a: boolean);
    private ay;
    get locale(): string;
    set locale(a: string);
    private av;
    get changeRef(): string;
    set changeRef(a: string);
}
