import { HashAlgorithm, SaltStrategy } from "../types.mjs"; /** * Takes a given encryptedData, in the form of a delimited string * of indexes, and decrypts it back into encoded hex (not the original * unencrypted data!). * * it does this by iterating * * @returns unencrypted, but still encoded, hex string of the original unencrypted data */ export declare function decryptToHex_stream({ encryptedData, initialRecursions, recursionsPerHash, salt, saltStrategy, secret, hashAlgorithm, encryptedDataDelimiter, }: { encryptedData: string; initialRecursions: number; recursionsPerHash: number; salt: string; saltStrategy: SaltStrategy; secret: string; hashAlgorithm: HashAlgorithm; encryptedDataDelimiter: string; }): Promise; //# sourceMappingURL=decrypt-to-hex-stream-mode.d.mts.map