/** The character a ZapfDingbats code stands for, or `undefined` for an unused one. */ export declare function zapfDingbatsChar(code: number): string | undefined; /** * The character a dingbat's glyph NAME stands for — `a38` is ✫ — for a font * that names its glyphs through `/Differences` (§9.6.6.1). * * @param name The glyph name. */ export declare function dingbatChar(name: string): string | undefined; /** Whether a base font names the ZapfDingbats face (§9.6.2.2 Table 109). */ export declare function isZapfDingbats(baseFont: string): boolean;