import type { CryptoContext } from './c-crypto.js'; export declare const verify: (input: { key: CryptoKey; alg: string; signature: Uint8Array; data: Uint8Array; }, _ctx?: CryptoContext) => Promise; export declare const verifyWithJwk: (input: { jwk: JsonWebKey; alg?: string; signature: Uint8Array; data: Uint8Array; }, _ctx?: CryptoContext) => Promise; //# sourceMappingURL=verify.d.ts.map