import { default as React } from 'react'; export type TNavItemVariant = 'filled' | 'transparent'; export interface INavItemProps extends React.HTMLAttributes { /** * The content of the navigation item. */ children?: React.ReactNode; /** * The content of the sub-items that will be displayed when the navigation item is clicked. */ subItems?: React.ReactNode; /** * Whether the navigation item is active. If `isActive=true` and has `subItems` the navigation item will be expanded. */ isActive?: boolean; /** * An icon to be displayed next to the content of the navigation item. */ icon?: React.ReactNode; } export declare const NavItem: ({ children, subItems, isActive, className, icon, onClick, ...props }: INavItemProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=NavItem.d.ts.map