import { FC } from 'react'; export interface CategoryItem { name: string; count?: number; linkTo?: string; classes?: string; } export interface CategoryListProps { heading?: string; items?: Array; renderListItem?: (item: CategoryItem) => JSX.Element; } export declare const CategoryList: FC; export default CategoryList;