import { CellPosition } from '../../../../internal/types'; export declare function useDTFocusDispatchContext(): { focusTableGenerally: () => void; moveFocusToCell: (cellPosition: CellPosition) => void; moveFocus: (direction: "up" | "down" | "left" | "right") => void; jumpFocus: (direction: "up" | "down" | "left" | "right") => void; blur: () => void; focusSubComponent: () => void; blurSubComponent: () => void; dispatch: import('react').Dispatch; };