import { DatePickerProps } from '@mui/x-date-pickers'; import { Dayjs } from 'dayjs'; export interface IDateRangePicker extends DatePickerProps { startLabel: string; endLabel: string; separator?: string; startDate?: Dayjs | null; endDate?: Dayjs | null; onChange?: (dateRange: any) => void; }