import { GridKeyboardDelegate } from '../grid/GridKeyboardDelegate'; import { ITableCollection } from 'react-stately/private/table/TableCollection'; import { Key, Node } from '@react-types/shared'; export declare class TableKeyboardDelegate extends GridKeyboardDelegate> { protected isCell(node: Node): boolean; getKeyBelow(key: Key): Key | null; getKeyAbove(key: Key): Key | null; private findNextColumnKey; private findPreviousColumnKey; getKeyRightOf(key: Key): Key | null; getKeyLeftOf(key: Key): Key | null; getKeyForSearch(search: string, fromKey?: Key): Key | null; }