import type { DriverFactory } from "../types.mjs"; /** MailChannels — free transactional send from Cloudflare Workers (no auth * needed when running inside a CF Worker; requires SPF/DKIM configured * for your sending domain). Outside Workers you need an API key. */ export interface MailChannelsDriverOptions { /** Required when not running inside a Cloudflare Worker. */ apiKey?: string; /** DKIM signing for non-Worker usage. */ dkim?: { domain: string; selector: string; privateKey: string; }; endpoint?: string; fetch?: typeof fetch; } declare const mailchannels: DriverFactory; export default mailchannels;