import { IEmailPayload } from "./Interfaces.js"; export declare class EmailHelper { private static getSESClient; static sendTemplatedEmail(from: string, to: string, appName: string, appUrl: string, subject: string, contents: string, emailTemplate?: "EmailTemplate.html" | "ChurchEmailTemplate.html", replyTo?: string): Promise; static readTemplate(templateFile?: string): string; private static sendSes; static sendEmail({ from, to, subject, body, replyTo }: IEmailPayload): Promise; } //# sourceMappingURL=EmailHelper.d.ts.map