/// export interface ItemProps { name: string; imgSrc: string; } export default function Item({ name, imgSrc }: ItemProps): JSX.Element;