import type { DriverFactory } from "../types.mjs"; /** Options for the AWS SES v2 driver. Zero-dep: no \`@aws-sdk/*\` imports, * Web Crypto SigV4, raw MIME via our shared builder (so attachments and * inline content work). Targets the SES v2 public API endpoint * \`email.{region}.amazonaws.com\`. */ export interface SesDriverOptions { region: string; accessKeyId?: string; secretAccessKey?: string; sessionToken?: string; /** Optional: SES Configuration Set used for event routing. */ configurationSetName?: string; /** Optional: FromEmailAddressIdentityArn / ReturnPath helpers. */ fromArn?: string; /** Override endpoint (for VPC endpoints, GovCloud, or test stubs). */ endpoint?: string; /** Injected fetch — defaults to global \`fetch\`. */ fetch?: typeof fetch; /** Injected clock — used for SigV4 signing. Exposed for tests. */ now?: () => Date; } declare const ses: DriverFactory; export default ses;