import { MenuProps, MenuSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = MenuSlots; type __VLS_Props = MenuProps; type __VLS_ModelProps = { "activeKey"?: string | number; "openKeys"?: Array; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { itemClick: (name: string | number, item: any) => any; openChange: (keys: string[]) => any; "update:activeKey": (value: string | number | undefined) => any; "update:openKeys": (value: (string | number)[]) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onItemClick?: ((name: string | number, item: any) => any) | undefined; onOpenChange?: ((keys: string[]) => any) | undefined; "onUpdate:activeKey"?: ((value: string | number | undefined) => any) | undefined; "onUpdate:openKeys"?: ((value: (string | number)[]) => any) | undefined; }>, { mode: "horizontal" | "vertical"; width: string | number; collapsedWidth: number; }, {}, {}, {}, string, 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; }; };