import { SentMessageInfo } from "nodemailer"; import { BaseProvider } from "./interfaces"; export declare const defaultTemplate = "\n\n\n\n\n \n \n Verify your login\n \n\n\n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n
\n
\n

C\u00F3digo de verificaci\u00F3n

\n

Por favor utiliza el c\u00F3digo de verificaci\u00F3n de abajo para iniciar sesi\u00F3n.

\n

[VERIFICATION_CODE]

\n

Si no solicitaste esto, puedes ignorar este correo electr\u00F3nico.

\n

Gracias

\n
\n
\n
\n
\n\n"; type ServerConfig = { user: string; pass: string; host: string; secure?: boolean; port?: number; }; export type EmailProviderOptions = { local?: boolean; server: ServerConfig; from: string; html?: string; codeSize?: number; text?: string; }; export type EmailProvider = BaseProvider & { code: string; from: string; local: boolean; send: (to: string) => Promise; }; export declare const CalculateSesSmtpPassword: (secretAccessKey: string, region?: string) => string; export default function EmailProvider(options: EmailProviderOptions): EmailProvider; export {};