import { ValueOf } from '../internal/types';
export declare const MenuItemType: {
    readonly Default: "default";
    readonly Primary: "primary";
    readonly Success: "success";
    readonly Warning: "warning";
    readonly Danger: "danger";
};
export type MenuItemType = ValueOf<typeof MenuItemType>;
