/** * Scrolls a table cell into view, accounting for sticky headers/footers and pinned columns. * Used for keyboard navigation to ensure focused cells are visible. * * @param element - The cell element to scroll into view * @param stickyDimensions - The dimensions of pinned columns * @param stickyDimensions.leftWidth - Width of left-pinned columns * @param stickyDimensions.rightWidth - Width of right-pinned columns */ export declare function scrollCellIntoView(element: HTMLElement, stickyDimensions: { leftWidth: number; rightWidth: number; }): void;