import type { WebhookVerifier, VerifyOptions } from './common.js'; export interface JwtVerifier extends WebhookVerifier { type: 'jwtVerifier'; } export declare const verifySignature: ({ payload, secret, signature, options, }: { payload: string | Record; secret: string; signature: string; options: VerifyOptions | undefined; }) => boolean; /** * JWT Payload Verifier * * Based on Netlify's webhook payload verification * @see: https://docs.netlify.com/site-deploys/notifications/#payload-signature */ export declare function jwtVerifier(options?: VerifyOptions): JwtVerifier; //# sourceMappingURL=jwtVerifier.d.ts.map