// Type definitions for ag-grid v18.1.2 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby import { GridCell } from "../entities/gridCell"; import { CellComp } from "../rendering/cellComp"; export declare class MouseEventService { private gridOptionsWrapper; private eGridDiv; private static gridInstanceSequence; private static GRID_DOM_KEY; private gridInstanceId; private init(); private stampDomElementWithGridInstance(); getRenderedCellForEvent(event: Event): CellComp; isEventFromThisGrid(event: MouseEvent | KeyboardEvent): boolean; getGridCellForEvent(event: MouseEvent | KeyboardEvent): GridCell; }