import { FC, Key, MouseEventHandler, ReactNode } from 'react'; export type LinkListProps = { links: { label: string; href: string; onClick?: MouseEventHandler; }[]; linkWrapper?: FC<{ key: Key; href: string; children?: ReactNode; }>; }; export declare const LinkList: FC;