import { IStoreState, ID, ISelection } from '../../index.data'; /** * 设置selection相关内容 * @param state * @type 行 和 cell 两种选择模式 * @id 如果是选行模式, 则指rowid, 否则指cellid * @return selection相关 */ export declare function setSelection(state: IStoreState, type: 'cell' | 'row', id: ID, forceClear?: boolean): ISelection | {}; export declare function selectCellAbove(state: IStoreState): {} | undefined; export declare function selectCellBelow(state: IStoreState): {} | undefined; export declare function selectCellLeft(state: IStoreState): {} | undefined; export declare function selectCellRight(state: IStoreState): {} | undefined;