export type FocusedPart = "header" | "body"; export interface CursorContext { isFocused: boolean; cursorRowIdx: number | undefined; cursorColIdx: number | undefined; moveCursor: (part: FocusedPart, rowIdx: number, colIdx: number) => void; focusedPart: FocusedPart; headerIsFocusable: boolean; } export declare const CursorContext: import("react").Context; export declare const useCursorContext: () => CursorContext;