/// interface Item { link?: string; title?: string; subItems?: any; } interface Props { open: boolean; onActiveTab: () => void; title: string; items?: Item[]; link?: string; activeUrl: string; handleView: (hash: string) => void; } declare const NestedList: ({ open, onActiveTab, title, items, link, activeUrl, handleView }: Props) => JSX.Element; export default NestedList;