/// import type { CommonPropsType } from '../../types'; import type { IMenuItem, INavigationStyle } from './type'; import './style'; export default function NavigationBar({ navigationbar, contentSlot, navigationSlot, className, style, callApi, }: PropsType): JSX.Element; export interface PropsType extends CommonPropsType { contentSlot?: string; navigationSlot?: string; navigationbar: { navigationStyle: INavigationStyle; menuData: IMenuItem[]; }; callApi: any; }