export type WebDecryptOptions = {
    associatedData?: Uint8Array;
};
export declare function webDecrypt(key: CryptoKey, ciphertext: AsyncIterable<Uint8Array>, options?: WebDecryptOptions): AsyncGenerator<Uint8Array, void, unknown>;
