import { ReactNode } from 'react'; interface IconItemProps { children: ReactNode; color: string; id: string; title: string; } declare const IconItem: import("react").NamedExoticComponent; export default IconItem;