import React, { ReactNode } from "react"; import { LinkProps } from "antd/lib/typography/Link"; import { FieldProps } from "../../../interfaces"; export declare type EmailFieldProps = FieldProps & LinkProps; /** * This field is used to display email values. It uses the {@link https://ant.design/components/typography/#FAQ ``} component * of {@link https://ant.design/components/typography ``} from Ant Design. * * @see {@link https://refine.dev/docs/api-references/components/fields/email} for more details. */ export declare const EmailField: React.FC;