import type { GridRowId } from '../../types'; export declare const positionFactory: ({ flatIds, rowHeight, headerHeight, columnIds, columnsWidths, }: { flatIds: GridRowId[]; rowHeight: number; headerHeight: number; columnIds: string[]; columnsWidths: number[]; }) => { getColumnFromX: (x: number) => { columnId: string | undefined; outOfBounds: string; } | { columnId: string | null; outOfBounds: null; }; getRowFromY: (y: number) => { rowId: GridRowId; outOfBounds: string; } | { rowId: GridRowId; outOfBounds: null; }; }; //# sourceMappingURL=position.d.ts.map