import type { DriverFactory } from "../types.mjs"; export interface MailgunDriverOptions { apiKey: string; domain: string; /** Region preset — `"us"` (default) or `"eu"`. Maps to the matching * Mailgun API endpoint. Overridden by `endpoint`. */ region?: "us" | "eu"; /** Explicit API endpoint override (highest precedence). */ endpoint?: string; fetch?: typeof fetch; } declare const mailgun: DriverFactory; export default mailgun;