/// declare type Props = { id?: string; SVGIcon: any; label: string; link?: string; state?: object; replace?: boolean; }; declare const ListItem: ({ id, SVGIcon, label, link, state, replace }: Props) => JSX.Element; export default ListItem;