/**
* Decrypt data with the users JWK. This function assumes (and requires) a user is logged in and a valid encrypt() response.
* @param ciphertext The data to decrypt.
* @returns The decrypted data.
*/exportdeclarefunctiondecrypt(ciphertext: Uint8Array | string | null): Promise<string>;