import React from 'react';
import { StyledProps } from '../common';
import { TdDateRangePickerProps } from './type';
export interface DateRangePickerProps extends TdDateRangePickerProps, StyledProps {
}
declare const DateRangePicker: React.ForwardRefExoticComponent<DateRangePickerProps & React.RefAttributes<HTMLDivElement>>;
export default DateRangePicker;
