import { ReactNode } from 'react'; interface IconItemProps { children: ReactNode; emoji: string; title: string; url: string; } declare const EmojiItem: import("react").NamedExoticComponent; export default EmojiItem;