import React from 'react'; import { Modifiers } from 'react-day-picker'; import 'react-day-picker/lib/style.css'; export type DatePickerProps = { variant?: 'single' | 'range'; disabledDays?: [Date | { before: Date; after?: Date; }]; fromMonth: Date; initialMonth: Date; onSelect: (nextSelectedStartDate?: Date) => void; selectedDays?: (Date | { from: Date; to: Date; } | undefined)[]; testID?: string; toMonth: Date; modifiers?: Partial; }; declare const DatePicker: ({ variant, disabledDays, fromMonth, initialMonth, onSelect, selectedDays, testID, toMonth, modifiers, }: DatePickerProps) => React.JSX.Element; export default DatePicker;