import { Glyph, Path } from "opentype.js"; import { EncryptionCharacterRange } from "./encryption-character-range.enum"; type Props = { originalGlyphs: (Glyph & { path: Path; })[]; characterRange: EncryptionCharacterRange; strength: number; translation: Map; glyphs: Glyph[]; }; /** * Obfuscates glyphs by modifying their paths and adding them to a translation map. * * @param {Props} props - The properties required for glyph obfuscation. * @returns {Object} - An object containing the updated translation map and glyphs array. */ export declare function obfuscateGlyphs({ originalGlyphs, characterRange, strength, translation, glyphs, }: Props): object; export {}; //# sourceMappingURL=obfuscateGlyphs.d.ts.map