/// export interface LinkProps { href: string; children: unknown; title?: string; } export default function Link(props: LinkProps): JSX.Element;