import { FC } from 'react';
import { ISingleDateBodyProps, IShowTime, IShowTimeOptionWithDefault } from '../../types';
interface IDatePickerBodyProps extends ISingleDateBodyProps {
    popText?: string;
    disableRangeOverView?: boolean;
    showTime?: IShowTime;
    showTimeOption?: IShowTimeOptionWithDefault;
}
declare const DatePickerBody: FC<IDatePickerBodyProps>;
export default DatePickerBody;
