import type { InboundAdapter } from "./index.mjs"; /** Mailgun inbound-route adapter. Mailgun sends \`multipart/form-data\` * with \`body-mime\` carrying the raw message (store mode). \`token + * timestamp + signature\` fields authenticate the request. */ export interface MailgunInboundOptions { /** Mailgun API signing key — used to verify the HMAC. */ signingKey?: string; } export default function mailgunInbound(options?: MailgunInboundOptions): InboundAdapter;