/// <reference types="node" />
import { WebhookEvent } from "./api";
export declare class OnfidoInvalidSignatureError extends Error {
}
export declare class WebhookEventVerifier {
    private readonly webhookToken;
    constructor(webhookToken: string);
    readPayload(rawEventBody: string | Buffer, hexSignature: string): WebhookEvent;
}
