import type { CryptoKey } from 'jose'; export declare function isJweToken(token: unknown): token is string; export declare function decryptJweToken(token: string, privateKey: CryptoKey): Promise; export declare function decryptJweTokenData(data: Record, privateKey: CryptoKey): Promise>;