import { CoreModel } from '../core/core.model'; import { ButtonModel } from '../button/button.model'; import { MenuModel } from '../menu/menu.model'; export declare class ButtonMenuModel extends CoreModel { /** *

The button object from Button Model

*/ buttonProperty: ButtonModel; /** *

The menu object from Menu Model

*/ menuProperty: MenuModel; /**@hidden * It is the constructor for the button menu component. It takes the required string values to create the button menu object */ constructor(values?: Object); }