/** * Verify the Webhook payload signature from provided JWKS string. * JWKS can be cached to avoid unnecessary calls. */ declare const verifySignatureWithJwks: (jwks: string, signature: string, rawBody: string) => Promise; declare const getJwksUrlFromSaleorApiUrl: (saleorApiUrl: string) => string; export { getJwksUrlFromSaleorApiUrl as g, verifySignatureWithJwks as v };