/// interface TagType { name: string; color: string; } export interface Item { title: string; tags: TagType[]; imgSrc?: string; url?: string; } interface Props { items: Item[]; } export default function NewTimeline({ items }: Props): JSX.Element; export {};