import React from "react";
interface DateRangePickerProps {
    fromDate?: Date;
    toDate?: Date;
    focusMonth?: {
        month: number;
        year: number;
    };
    locale?: Locale;
    duration?: number;
    disabledDaysFunction?: (date: Date) => boolean;
    extraClassNamesFunction?: (date: Date) => string[];
    dayContentFunction?: (date: Date) => JSX.Element | null | undefined;
    onSelectionChange?: (fromDate: Date, toDate: Date) => void;
    onFromDateChange?: (date?: Date) => void;
    onToDateChange?: (date?: Date) => void;
    onFocusMonthChange?: (focusMonth: {
        month: number;
        year: number;
    }) => void;
}
declare const DateRangePicker: React.FC<DateRangePickerProps>;
export default DateRangePicker;
