//#region src/fonts/obfuscation.d.ts declare class FontDeobfuscationError extends Error { constructor(detail: string); } declare function deriveFontKey(fontKey: string): Uint8Array; declare function looksLikeSfnt(bytes: Uint8Array): boolean; declare function deobfuscateEmbeddedFont(bytes: Uint8Array, fontKey: string | undefined): Uint8Array; //#endregion export { FontDeobfuscationError, deobfuscateEmbeddedFont, deriveFontKey, looksLikeSfnt };