/** * Core default: Verify Email template. * * Themes can override by creating `themes//emails/verify-email.ts` with * a default export matching this contract. The build-time email registry will * pick the theme version over this one when the active theme has the file. * * @see packages/core/scripts/build/registry/discovery/emails.mjs * @see packages/core/scripts/build/registry/generators/email-registry.mjs */ import type { EmailContent, VerificationEmailData } from '../lib/email/types'; export default function verifyEmail(data: VerificationEmailData, locale?: string): Promise; //# sourceMappingURL=verify-email.d.ts.map