import type { InboundAdapter } from "./index.mjs"; /** Postmark inbound-webhook adapter. Postmark delivers JSON, not raw MIME, * so we translate its schema straight to \`ParsedEmail\` without touching * postal-mime. */ export interface PostmarkInboundOptions { /** Postmark's inbound URL can be protected by HTTP Basic auth — pass * the expected \`"user:pass"\` here to enable verification. */ basicAuth?: string; } export default function postmarkInbound(options?: PostmarkInboundOptions): InboundAdapter;