import type { PositionState, RootCellFn, ScrollIntoViewFn } from "./+types"; interface FocusCellArgs { readonly rowIndex: number; readonly colIndex: number; readonly getRootCell: RootCellFn; readonly scrollIntoView: ScrollIntoViewFn; readonly vp: HTMLElement | null; readonly id: string; readonly focusActive: PositionState; readonly postFocus?: () => void; } export declare function focusCell({ focusActive, id, vp, rowIndex, colIndex, getRootCell, scrollIntoView, postFocus, }: FocusCellArgs): boolean; export {};