/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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';
/**
 * Arguments for the `select` event of the ContextMenu.
 */
export declare class ContextMenuSelectEvent extends ContextMenuEvent {
    /**
     * The DOM event that triggered the selection.
     */
    originalEvent: any;
}
