import { ExtractPropTypes, PropType } from 'vue'; export type MenuLayoutType = 'horizontal' | 'vertical'; export type MenuItemType = { key: string; title?: String; label?: String; icon?: String; children?: MenuItemType[]; disabled?: Boolean; command?: void; }; export declare const menuProps: { readonly active: StringConstructor; readonly data: PropType; readonly levelPadding: StringConstructor; readonly padding: StringConstructor; readonly collapse: BooleanConstructor; readonly layout: { readonly type: PropType; readonly default: "horizontal"; }; }; export type MenuProps = ExtractPropTypes;