import React, { ReactNode } from 'react'; import { LinkProps } from 'antd/lib/typography/Link'; import { FieldProps } from '../../../interfaces'; export declare type EmailFieldProps = FieldProps & LinkProps; export declare const EmailField: React.FC;