export declare class WaCellContextmenuEvent extends Event { readonly detail: WaCellContextmenuEventDetail; constructor(detail: WaCellContextmenuEventDetail); } interface WaCellContextmenuEventDetail { /** The id of the cell's column. */ column: string; /** The cell's accessor value. */ value: unknown; /** The row object the cell belongs to. */ row: Record; /** The row's display index (post sort, filter, and pagination). */ rowIndex: number; /** The originating event: a `PointerEvent` for right-clicks, a `KeyboardEvent` for Shift+F10 / the menu key. */ originalEvent: Event; } declare global { interface GlobalEventHandlersEventMap { 'wa-cell-contextmenu': WaCellContextmenuEvent; } } export {};