import { Font, FontGroup } from 'types/entities.types'; export declare type FontsById = { [key: string]: Font; }; export declare const getFontGroups: (state: any) => FontGroup[]; export declare const getFontsGlyphs: (state: any) => FontsById; export declare const getFontsGlyphsByIds: (state: any, fontIds: string[]) => Font[]; export declare const getFonts: (state: any) => FontsById; export declare const getFallbackFontsGlyphsId: (state: any) => string;