import { Coord } from '../types'; import { AllGridSelection } from './allGridSelection'; import { CellsSelection } from './cellsSelection'; import { ColsSelection } from './colsSelection'; import { NoSelection } from './noSelection'; import { RowsSelection } from './rowsSelection'; import { ClickMeta } from './selectionTypes'; export declare type AllSelectionStates = CellsSelection | RowsSelection | ColsSelection | AllGridSelection | NoSelection; export declare const createSelectionStateForMouseDown: (cell: Coord, meta: ClickMeta) => RowsSelection | AllGridSelection | CellsSelection | ColsSelection;