import type { ExtractPropTypes } from 'vue'; import type { RouteLocationRaw } from 'vue-router'; import type { MenuItemRegistered } from './types'; export declare const menuItemProps: { readonly index: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string & {}) | (() => string | null) | ((new (...args: any[]) => string & {}) | (() => string | null))[], unknown, unknown, null, boolean>; readonly route: { readonly type: import("vue").PropType RouteLocationRaw & {}) | (() => RouteLocationRaw) | ((new (...args: any[]) => RouteLocationRaw & {}) | (() => RouteLocationRaw))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; }; export declare type MenuItemProps = ExtractPropTypes; export declare const menuItemEmits: { click: (item: MenuItemRegistered) => boolean; }; export declare type MenuItemEmits = typeof menuItemEmits;