/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { MenuComponent } from './menu.component'; import { PreventableEvent } from './preventable-event'; /** * Represents the arguments for the `open` and `close` events of the Menu. */ export declare class MenuEvent extends PreventableEvent { /** * Specifies the MenuComponent that triggered the event. */ sender: MenuComponent; /** * Specifies the item data of the event. */ item: any; /** * Specifies the item index of the event. */ index: string; }