import type { DriverFactory } from "../types.mjs"; /** Options for the Resend driver. Keep the surface minimal — everything * Resend-specific (tags, scheduling, idempotency) is carried on the * `EmailMessage` itself. */ export interface ResendDriverOptions { apiKey: string; /** Override for self-hosted gateways or test stubs. */ endpoint?: string; /** Fetch impl — useful for tests. Defaults to the global `fetch`. */ fetch?: typeof fetch; } declare const resend: DriverFactory; export default resend;