import { AdaptableColumn } from '../Common/AdaptableColumn';
import { GridCell } from './GridCell';
/**
 * Describes which Cells are currently selected in AdapTable
 */
export interface SelectedCellInfo<TData = any> {
    /**
     * Array of Columns which have selected cells
     */
    columns: AdaptableColumn<TData>[];
    /**
     * Array of GridCells (which provide cell value, primary kev value and other info)
     */
    gridCells: GridCell<TData>[];
}
