export type IconfontGlyph = { font_class: string; unicode: string; }; export type IconfontJSON = { font_family?: string; glyphs: IconfontGlyph[]; [key: string]: any; }; export declare function setIconfontConfig(config: { data: IconfontJSON; fontFamily?: string; }): void; export declare function setIconfontAliases(map: Record): void; export declare function getIconfontChar(name: string): string | null; export declare function getIconfontFamily(): string; //# sourceMappingURL=IconfontRegistry.d.ts.map