interface VerifyWebhookSignatureOptions { toleranceInSeconds?: number; ignoreTolerance?: boolean; } export declare const defaultTolerance = 300; /** * Verifies the webhook signature using the provided signing secret. * @param payload The payload from the webhook request. * @param signatureHeader The signature header from the webhook request. * @param signingSecret The signing secret used to verify the signature. This should be the same secret used to create the event subscription. * @param options The options for verifying the webhook signature. * @returns True if the signature is valid, false otherwise. */ export declare function verifyWebhookSignature(payload: string, signatureHeader: string, signingSecret: string, options?: VerifyWebhookSignatureOptions): boolean; export {};