import { IconType } from "../common.type";
export declare type Menu = {
name: string;
label: string;
link?: string;
icon?: string;
group?: string;
count?: number | string;
disabled?: boolean;
subMenu?: Menu[];
iconType?: IconType;
expanded?: boolean;
};
export declare type ActiveMenu = ({
name: string;
} | {
link: string;
}) & Partial