/// export interface PopularTopicsProps { title: string; link: string; listItems: { image: string; name: string; tickets: string; icons: string; }[]; } declare const PopularTopicsList: ({ title, link, listItems }: PopularTopicsProps) => JSX.Element; export default PopularTopicsList;