import { FunctionComponent } from 'react'; import { BlockOption } from '../blockData'; interface GroupedMenuProps { options: BlockOption[]; selectedBlockType: string; onChange: (blockType: string) => void; } declare const Grouped: FunctionComponent; export default Grouped;