export type NavItem = { label: string; ariaLabel?: string; title?: string; to?: string | Record; href?: string; target?: string; rel?: string; disabled?: boolean; current?: boolean; class?: string | string[]; on?: Record<'click' | (string & {}), () => void>; data?: Record; }; export type NavItemTab = NavItem & { tab?: string; };