import { DashboardSidebarConfig, DashboardSidebarItemConfig, DashboardSidebarNestedKey } from './types.js'; export interface DashboardSidebarItemProps { activePath: string; config: DashboardSidebarConfig; item: DashboardSidebarItemConfig; onNavigate: (href: string) => void; onOpenNested?: (key: DashboardSidebarNestedKey) => void; } /** * Single HeroUI-button nav row (label + optional badge, external icon, nested drill-in). */ export declare function DashboardSidebarItem({ activePath, config, item, onNavigate, onOpenNested }: DashboardSidebarItemProps): import("react").JSX.Element;