/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ContextMenuEvent } from './context-menu-event'; /** * Represents the arguments for the `select` event of the ContextMenu. */ export declare class ContextMenuSelectEvent extends ContextMenuEvent { /** * Specifies the DOM event that triggered the selection. */ originalEvent: any; }