import type { ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type CellNavigationProviderProps = Pick<HighTableProps, 'cellPosition' | 'focus' | 'numRowsPerPage' | 'onCellPositionChange'> & {
    /** Children elements */
    children: ReactNode;
};
/**
 * Provide the cell navigation state and logic to the table, through the CellNavigationContext.
 */
export declare function CellNavigationProvider({ cellPosition: controlledCellPosition, focus, numRowsPerPage, onCellPositionChange, children, }: CellNavigationProviderProps): import("react/jsx-runtime").JSX.Element;
export {};
