import type { MenuItem } from 'primevue/menuitem'; import { type HTMLAttributes } from 'vue'; type CategoryItem = MenuItem & { items?: MenuItem[]; }; type SideMenuProps = { model?: MenuItem[] | CategoryItem[]; activeIndex?: number; isLoading?: boolean; hasCategories?: boolean; } & /* @vue-ignore */ Pick; declare var __VLS_27: { item: MenuItem; active: boolean; onSelect: () => void; onKeydown: (event: KeyboardEvent) => void; }; type __VLS_Slots = {} & { item?: (props: typeof __VLS_27) => any; }; declare const __VLS_base: import("vue").DefineComponent any; "tab-change": (item: MenuItem) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:activeIndex"?: ((value: number) => any) | undefined; "onTab-change"?: ((item: MenuItem) => any) | undefined; }>, { isLoading: boolean; activeIndex: number; model: MenuItem[] | CategoryItem[]; hasCategories: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };