export type Mailer = { sendVerificationEmail(input: { to: string; token: string }): Promise; sendPasswordResetEmail(input: { to: string; token: string }): Promise; }; export const noopMailer: Mailer = { async sendVerificationEmail() {}, async sendPasswordResetEmail() {}, };