import React from 'react';
interface DateRangePickerProps {
  fromDate?: Date;
  toDate?: Date;
  onSelectionChange?: (fromDate?: Date, toDate?: Date) => void;
  isSingleDate?: boolean;
  onRequestClose?: () => void;
}
declare const DateRangePicker: React.FC<DateRangePickerProps>;
export default DateRangePicker;
