import React from 'react';
/**
 * Resets the relative left distance of all cells in the array.
 * @param cells
 * @param extraWidth The additional width added to the last cell when there is a vertical scroll bar.
 */
export default function resetLeftForCells(cells: any, extraWidth?: number): React.ReactNode[];
