import { FC } from 'react';
import { DatePickerProps } from 'antd';
import { Locale } from 'antd/es/locale';
export interface BaseDatePickerProps extends DatePickerProps {
    noDateText: string;
    configLocale: Locale;
    currentValue: string;
    readOnly?: boolean;
    isTime?: boolean;
}
export declare const BaseDatePicker: FC<BaseDatePickerProps>;
