import type { PositionGridCell, PositionUnion } from "../../types.js"; /** * Determines if the cell selection is a self click. A self click is when the * anchor cell is clicked and we don't want to clear the selection. */ export declare function isSelectSelfClick(startPosition: PositionGridCell, currentFocus: PositionUnion | null, clearOnSelfSelect: boolean, shiftOnly: boolean): boolean;