import type { GridFocusArea } from '../state'; import type { GridRowId } from '../types'; import type { ApiSection } from './types'; export type GridFocusApi = { move: (direction: 'left' | 'right' | 'up' | 'down') => void; set: (rowId: GridRowId, columnId: string, area: GridFocusArea, subFocus?: number | 'first' | 'last') => void; }; export declare const createFocusApi: ApiSection; //# sourceMappingURL=focus.d.ts.map