/** * The format used to deliver webhook payloads. * * - `json` — the full payload is sent inline in the webhook request body. * - `url` — large payloads are replaced with a signed download URL. */ export declare const WebhookPayloadFormat: { readonly Json: "json"; readonly Url: "url"; }; export type WebhookPayloadFormat = (typeof WebhookPayloadFormat)[keyof typeof WebhookPayloadFormat] | string;