import type { WebhookProvider } from "./index.mjs"; /** Postmark webhook verifier. Postmark doesn't expose an HMAC — the * standard integration uses HTTP Basic auth on the webhook URL. Pass * \`basicAuth\` to enable verification. */ export interface PostmarkWebhookOptions { basicAuth?: string; } export default function postmarkWebhook(options?: PostmarkWebhookOptions): WebhookProvider;