import { ComponentPropsWithRef, ReactNode } from 'react'; export interface EmailProps extends ComponentPropsWithRef<"a"> { bcc?: string[]; body?: string; cc?: string[]; children?: ReactNode; email: string; subject?: string; } export declare const Email: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;