/// <reference types="react" />
import React from 'react';
export default class RangePicker extends React.Component<any, any> {
    static defaultProps: {
        prefixCls: string;
        allowClear: boolean;
        showToday: boolean;
    };
    constructor(props: any);
    componentWillReceiveProps(nextProps: any): void;
    clearSelection: (e: any) => void;
    handleChange: (value: any) => void;
    handleOpenChange: (open: any) => void;
    setValue(value: any): void;
    renderFooter: () => JSX.Element | null;
    render(): JSX.Element;
}
