import { FC } from 'react'; import { PickDate, ClickDate } from 'bloko/blocks/calendar/datesHelper'; import { EnrichIfPresentWithOptionName, CalendarPickerAndSwitcherKind } from 'bloko/blocks/calendar/helper'; import { CalendarTranslator } from 'bloko/blocks/calendar/translations'; export interface CalendarPickerProps { kind: CalendarPickerAndSwitcherKind; translate: CalendarTranslator; date: Date; initialDates: EnrichIfPresentWithOptionName; onClick?: ClickDate; onPick: PickDate; showInterval?: boolean; } declare const CalendarPicker: FC; export default CalendarPicker;