import type { InboundAdapter } from "./index.mjs"; /** SendGrid Inbound Parse adapter. SG posts \`multipart/form-data\`; the * \`email\` field is the raw MIME message. */ export interface SendGridInboundOptions { /** Optional shared secret verified via a custom header. */ secret?: string; secretHeader?: string; } export default function sendgridInbound(options?: SendGridInboundOptions): InboundAdapter;