import { DateFormat, WidgetModel } from '../index';
export interface DatePickerModel extends WidgetModel {
    /**
     * Preselected date can only be set if selectedDate is null. The preselected date is rendered differently, but
     * has no function otherwise. (It is used to indicate the day that will be selected when the user presses
     * the UP or DOWN key while no date is selected.)
     */
    preselectedDate?: Date;
    selectedDate?: Date;
    dateFormat?: DateFormat | string;
    viewDate?: Date;
    allowedDates?: Date[];
    touch?: boolean;
}
//# sourceMappingURL=DatePickerModel.d.ts.map