/** * Obfuscates a string by translating each character based on the provided translation map. * * @param {string} value - The string to be obfuscated. * @param {Map} translation - The translation map used for obfuscation. * @returns {string} - The obfuscated string. */ export declare function obfuscateString(value: string, translation: Map): string; //# sourceMappingURL=string.d.ts.map