export interface EmailProps {
    /** The email address. */
    email: string;
    /** Details around contacting the provided email. */
    details?: string | object;
}
declare const Email: (props: EmailProps) => any;
export default Email;
