import { AlphabetIndexingMode, HashAlgorithm, SaltStrategy } from "../types.mjs"; /** * Does the actual encryption from hexEncodedData with the given params. * * @returns encryptedData */ export declare function encryptFromHex_stream({ hexEncodedData, initialRecursions, recursionsPerHash, salt, saltStrategy, secret, hashAlgorithm, encryptedDataDelimiter, indexingMode, }: { hexEncodedData: string; initialRecursions: number; recursionsPerHash: number; salt: string; saltStrategy: SaltStrategy; secret: string; hashAlgorithm: HashAlgorithm; encryptedDataDelimiter: string; indexingMode: AlphabetIndexingMode; }): Promise; //# sourceMappingURL=encrypt-from-hex-stream-mode.d.mts.map