import React from 'react'; import { Font, FontGroup } from 'types/entities.types'; interface Props { fontGroup: FontGroup; selectedFont: string; allFontsById: { [key: string]: Font; }; updateFont: (fontId: string) => void; } declare const BrandFontPickerComponentGroup: React.FC; export default BrandFontPickerComponentGroup;