import { Font } from 'types/entities.types'; export declare type FontState = { fontsById: { [key: string]: Font; }; fontGroups: { name: string; fonts: string[]; }[]; fontGlyphs: { [key: string]: Font; }; fallbackFontId: string; }; declare const FontReducer: import("redux-actions").ReduxCompatibleReducer; export default FontReducer;