export type CellFocusContextValue = { /** * Whether the cell currently has focus */ isCellFocused: boolean; }; /** * Context for communicating cell focus state to child components. * Used by CellStatus to show tooltips when the cell is focused via keyboard. */ export declare const CellFocusContext: import('react').Context; /** * Hook to consume the CellFocusContext. * Returns null if used outside of a CellFocusContext.Provider. */ export declare function useCellFocusContext(): CellFocusContextValue | null;