import { FlexProps } from "../Box"; export declare type SubMenuItemsType = { label: string; href: string; itemProps?: any; iconName?: string; isMobileOnly?: boolean; }; export interface SubMenuItemsProps extends FlexProps { items: SubMenuItemsType[]; activeItem?: string; isMobileOnly?: boolean; }