import type { Store } from '../state'; import type { GridRowId } from '../types'; export type FindNextEditableReturn = { columnId: string; rowId: GridRowId; }; export declare const findNextEditable: (store: Store, forward?: boolean) => FindNextEditableReturn | null; //# sourceMappingURL=find-next-editable.d.ts.map