import { IconSize } from '../../icons/types'; interface NavItemProps { icon: React.ComponentType<{ size?: IconSize; }>; label: string; isSelected?: boolean; onClick?: () => void; /** When set, renders the item as an anchor tag navigating to this URL. */ href?: string; /** Target for the anchor tag, e.g. "_blank". Only used when `href` is set. */ target?: string; } export declare function NavItem({ icon: Icon, label, isSelected, onClick, href, target }: NavItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=NavItem.d.ts.map