import type { DriverFactory } from "../types.mjs"; /** Options for the Zeptomail driver. The token **must** be prefixed with * \`Zoho-enczapikey \` per Zeptomail's auth format. */ export interface ZeptomailDriverOptions { /** Full token including the \`Zoho-enczapikey \` prefix. */ token: string; endpoint?: string; fetch?: typeof fetch; trackClicks?: boolean; trackOpens?: boolean; } declare const zeptomail: DriverFactory; export default zeptomail;