import { JweGeneralJson } from "./types.mjs"; //#region src/jwe/decrypt.d.ts declare function decrypt({ jwe, recipientKid, privateKey, apu, apv }: { jwe: JweGeneralJson; recipientKid: string; privateKey: Uint8Array; apu?: Uint8Array; apv?: Uint8Array; }): Uint8Array; //#endregion export { decrypt }; //# sourceMappingURL=decrypt.d.mts.map