import { FieldBaseProps } from '../base'; /** * Props for {@link EmailField}. * Extends {@link FieldBaseProps}. * * @category EmailField */ export type EmailFieldProps = Omit; /** * Email field component used to enter email addresses. * * Use for collecting email contact information in forms. * * @category EmailField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const EmailField: import('react').ForwardRefExoticComponent>;