import { BoxProps } from "../Box"; import { DropdownMenuItems } from "../DropdownMenu/types"; import { SvgProps } from "../Svg"; export declare type MenuItemsType = { label: string; href: string; icon?: string; iconComponent?: React.FC; active?: boolean; bottom?: boolean; items?: DropdownMenuItems[]; showOnMobile?: boolean; showItemsOnMobile?: boolean; }; export interface MenuItemsProps extends BoxProps { items: MenuItemsType[]; activeItem?: string; activeSubItem?: string; onItemClick?: () => void; } export declare type StyledIconContainerProps = { $isActive?: boolean; }; export declare type StyledDisabledMenuItemProps = { $targetColor?: string; };