import { MenuProps } from "@grc/base/components/menu";
export interface MenuItemOption {
    disabled?: boolean;
    hidden?: boolean;
    icon?: string | React.ReactElement;
    text: string | React.ReactElement;
    path?: string;
    key: string;
    target?: string;
    isActive?: (pathname: string) => boolean;
    children?: MenuItemOption[];
}
export interface MenuComponentProps extends MenuProps {
    menuItems: MenuItemOption[];
}
