import type Time from 'src/data/Time'; export interface DateTimePickerProperties { startDate: string; endDate: string; startTime: Time; endTime: Time; setStartTime: Function; setEndTime: Function; currentDate: string; selectedDate: string; openBottomSheet: boolean; onDateSelect: Function; onStartEndChanged: Function; onDoneSelect: Function; calendarTheme: object; onStartDateSelect: Function; onEndDateSelect: Function; onStartTimeSelect: Function; onEndTimeSelect: Function; }