import React from 'react';
import { DatePickerProps } from './DatePicker';
export type RangePickerRef = {
    focus: () => void;
} | undefined;
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<DatePickerProps & {
    prefix?: boolean | undefined;
    onActiveChange: (active: boolean) => void;
    type?: "date" | "month" | undefined;
    readonly?: boolean | undefined;
    tip?: React.ReactNode;
    error?: React.ReactNode;
    footerTip?: React.ReactNode;
} & React.RefAttributes<{
    focus: () => void;
} | undefined>>>;
export default _default;
