/**
 * This is used to avoid having to do an `instanceof` check
 * which would cause a circular dependency between the
 * `MenuComponent` and `MenuItemComponent`
 */
export declare enum MenuItemType {
    Default = 0,
    Custom = 1
}
