import { WidgetModel } from '../index';
export interface TimePickerModel 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.)
     */
    preselectedTime?: Date;
    selectedTime?: Date;
    timeResolution?: number;
}
//# sourceMappingURL=TimePickerModel.d.ts.map