denwa-react-shared
Version:
12 lines (11 loc) • 358 B
TypeScript
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>;