import { BaseProps } from "../../Factory/BaseType"; export type MenuProps = BaseProps & { menuItems?: ItemProps[]; onNavigate?: (callBack: undefined, path: string, navigationType: string) => void; loadMenuDetails?: (callBack: (menuItems: ItemProps[]) => void) => Promise; }; export type ItemProps = { label: string; path: string; displayType: "TEXT" | "IMAGE"; subItems: ItemProps[]; navigationType: string; onNavigate: (path: string, navigationType: string) => void; }; declare const Menu: (props: MenuProps) => import("react/jsx-runtime").JSX.Element; export default Menu;