import type { DriverFactory } from "../types.mjs"; export interface MailerSendDriverOptions { apiKey: string; endpoint?: string; fetch?: typeof fetch; } declare const mailersend: DriverFactory; export default mailersend;