import { DecryptArgs, DecryptResult } from "../types.mjs"; /** * Does the actual decryption work using the original stream code. * * I'm trying to change this as little as possible for reference and sanity * checks. * * {@link decrypt} * {@link DecryptArgs} * {@link DecryptResult} * * @returns a `DecryptResult` info object */ export declare function decryptImpl_stream({ encryptedData, initialRecursions, recursionsPerHash, salt, saltStrategy, secret, hashAlgorithm, encryptedDataDelimiter, }: DecryptArgs): Promise; //# sourceMappingURL=decrypt-stream-mode.d.mts.map