import { KeyLike } from 'jose'; import { DecodedIdToken, VerifyOptions } from '../types.js'; export declare const ALGORITHM_RS256: "RS256"; export declare function getPublicCryptoKey(publicKey: string): Promise; export declare function verify(jwtString: string, getPublicKey: () => Promise, options: VerifyOptions): Promise;