import type { ProcessWebhookOptions } from '../../../webhooks/webhook-handler'; export interface WebhookProcessResult { processed: boolean; reason?: string; threats?: string[]; } export declare const webhooksService: { processEvent: (body: string | Buffer, signature: string | null, options?: ProcessWebhookOptions) => Promise; verifySignature: (body: string | Buffer, signature: string, secret: string) => Promise; }; //# sourceMappingURL=webhooks.service.d.ts.map