/// <reference types="react" />
import { IDatePickerPanelProps } from './index';
import { IShowTimeOptionWithDefault } from '../../types';
interface IDatePickerFooterProps extends Omit<IDatePickerPanelProps, 'popText' | 'hideFooter'> {
    showTimeOption?: IShowTimeOptionWithDefault;
}
declare const DatePickerFooter: React.FC<IDatePickerFooterProps>;
export default DatePickerFooter;
