/// interface Props { id: number; selected: boolean; icon: string; onClickTabIcon: (id: number) => void; } declare function TabIcon({ id, selected, icon, onClickTabIcon }: Props): JSX.Element; export default TabIcon;