/// import { Font } from '../../hooks/useFetch'; declare type Props = { fonts: Font[]; currentFont?: Font; onChange?: (font: Font) => void; }; declare const FontSelectionGrid: ({ fonts, currentFont, onChange }: Props) => JSX.Element; export default FontSelectionGrid;