import { WebhookVerificationResult, ContioWebhookEvent } from './types'; export declare class WebhookVerifier { private readonly secret; constructor(secret: string); verifySignature(payload: string | Buffer, signature: string): WebhookVerificationResult; parseWebhook(payload: string | Buffer, signature: string): ContioWebhookEvent | null; } export declare function verifyWebhookSignature(payload: string | Buffer, signature: string, secret: string): boolean; export declare function parseWebhook(payload: string | Buffer, signature: string, secret: string): ContioWebhookEvent; //# sourceMappingURL=verifier.d.ts.map