import React from 'react'; import { ConfigType } from 'dayjs'; import { TextProps } from 'antd/lib/typography/Text'; import { FieldProps } from '../../../interfaces'; declare type DateProps = { locales?: string; format?: string; }; export declare type DateFieldProps = FieldProps & DateProps & TextProps; export declare const DateField: React.FC; export {};