import type { BeanCollection } from '../context/context';
import type { GridOptionsService } from '../gridOptionsService';
import type { CellPosition } from '../interfaces/iCellPosition';
export declare function _getCellPositionForEvent(gos: GridOptionsService, event: MouseEvent | KeyboardEvent): CellPosition | null;
export declare function _getNormalisedMousePosition(beans: BeanCollection, event: MouseEvent | {
    x: number;
    y: number;
}): {
    x: number;
    y: number;
};
