import { ReactNode } from 'react'; declare type LinkListItem = { to: string; content: ReactNode; }; declare type LinkListProps = { links: LinkListItem[]; }; export default function LinkList({ links }: LinkListProps): JSX.Element; export {};