import { EmailOptions } from '../types'; export declare const getVerificationText: ({ magicLink, siteName, }: EmailOptions) => any; export declare function VerificationEmail({ siteName, siteUrl, logoUrl, magicLink, }: EmailOptions): import("react/jsx-runtime").JSX.Element; export declare function createVerificationEmail(options: EmailOptions): { to: string; from: string; subject: string; text: any; html: string; };