import { EncryptArgs, EncryptResult } from "../types.mjs"; /** * Does the actual encryption work using the original "stream" streaming * encryption. * * {@link encrypt} * {@link EncryptArgs} * {@link EncryptResult} * * @returns a `EncryptResult` info object */ export declare function encryptImpl_stream({ dataToEncrypt, initialRecursions, recursionsPerHash, salt, saltStrategy, secret, hashAlgorithm, encryptedDataDelimiter, confirm, indexingMode, }: EncryptArgs): Promise; //# sourceMappingURL=encrypt-stream-mode.d.mts.map