/** * Verifies a webhook signature * * @param payload The payload that was sent in the webhook * @param secret The secret that was used to sign the webhook * @param signatureHeader The header that contains the signature * @param timestampHeader The header that contains the timestamp * @param timestampTolerance The tolerance for the timestamp */ export declare const verifyWebhook: (payload: string, secret: string, signatureHeader: string | null | undefined, timestampHeader: string | null | undefined, timestampTolerance: number) => void; //# sourceMappingURL=webhooks.d.ts.map