import { CoreModel } from '../core/core.model'; import { ButtonModel } from '../button/button.model'; /** * MenuItem Class provide each single menu item for md-menu. * It is expanding CfCoreComponent. For now it can be used in GC Mneu and GC Button. *
{{'{'}}
* buttonProperty: cfButton,
* divider: true/false,
* notification: ''
* {{'}'}}
*/
export declare class MenuItemModel extends CoreModel {
/**
* The configuration model for the button.
*/
buttonProperty?: ButtonModel;
/**
* Show or hide divider. Default: false.
*/
divider?: boolean;
/**
* Menu item notification.
*/
notification?: string;
/**@hidden */
constructor(values?: Object);
}