import * as React from "react"; import { SidebarItem } from "./Sidebar"; export interface SidebarNavItemProps extends SidebarItem { currentPath: string; collapsed: boolean; dense?: boolean; onItemClick: (path: string) => void; } export declare const SidebarNavItem: ({ path, icon: Icon, label, badge, subItems, currentPath, collapsed, dense, onItemClick, }: SidebarNavItemProps) => React.ReactElement; //# sourceMappingURL=SidebarNavItem.d.ts.map