import { ReactNode } from 'react'; import * as dayjs from 'dayjs'; export interface DateRangePickerProps { showToday?: boolean; startPlaceholder?: string; endPlaceholder?: string; onChange?: () => void; locale?: string; readOnly?: boolean; disabled?: boolean; className?: string; direction?: number; dateFormat?: string; initialStartDate?: dayjs.Dayjs; initialEndDate?: dayjs.Dayjs; format?: string; icon?: ReactNode; prevIcon?: ReactNode; nextIcon?: ReactNode; useReactPortal?: boolean; }