declare type FontToUnicode = number[] | string; export declare const fontToUnicode: { [font: string]: FontToUnicode | undefined; }; export declare function recodeSymbolFontText(input: string, font: string, unmapped?: 'keep' | 'skip' | '?'): string | undefined; export {};