import React from "react";
import { Dayjs } from "dayjs";
interface PropsType {
    value: {
        start: Dayjs | null;
        end: Dayjs | null;
    };
    onChange: (range: {
        start: Dayjs | null;
        end: Dayjs | null;
    }) => void;
    locale?: "fa" | "en";
    calendarType?: "jalali" | "gregory";
    direction?: "rtl" | "ltr";
}
declare const RangePicker: React.FC<PropsType>;
export default RangePicker;
