export declare function escapeSlackMrkdwn(value: string): string; export declare function isWebhookUrlAllowed(url: string): boolean; export interface DeliverJsonWebhookOptions { url: string; payload: unknown; headers?: Record; timeoutMs?: number; maxRedirects?: number; } export type JsonWebhookDeliveryResult = { ok: true; status: number; } | { ok: false; blocked: true; } | { ok: false; blocked: false; status?: number; error?: unknown; }; export declare function deliverJsonWebhook(options: DeliverJsonWebhookOptions): Promise; //# sourceMappingURL=webhook-delivery.d.ts.map