import { RouteLocationRaw } from 'vue-router'; import { CustomizableOptions } from '../../composables/useCustomizableOptions'; type MenuItem = { text: string; value: string; link?: string; to?: RouteLocationRaw; icon?: string; }; type __VLS_Props = CustomizableOptions & { menuItems?: MenuItem[]; additionalInformation?: string; fullName?: string; hideLogoutBtn?: boolean; isMobileView?: boolean; hideUserIcon?: boolean; logoutText?: string; }; type __VLS_PublicProps = { modelValue?: MenuItem | null; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { logout: (...args: any[]) => void; "update:modelValue": (value: MenuItem | null) => void; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: MenuItem | null) => any) | undefined; onLogout?: ((...args: any[]) => any) | undefined; }>, { menuItems: MenuItem[]; hideLogoutBtn: boolean; isMobileView: boolean; additionalInformation: string; fullName: string; hideUserIcon: boolean; logoutText: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };