import React from "react";
import "react-multi-date-picker/styles/colors/red.css";
import "react-multi-date-picker/styles/layouts/mobile.css";
interface DateRangePickerProps {
    value?: {
        startDate: Date | null;
        endDate: Date | null;
    };
    onChange: (range: {
        startDate: string;
        endDate: string | null;
    }) => void;
    range?: boolean;
}
declare const DateRangePicker: React.FC<DateRangePickerProps>;
export default DateRangePicker;
