import { SelectedCellInfo } from '../../AdaptableState/Selection/SelectedCellInfo';
import { BaseContext } from '../../types';
/**
 * Event Info published by CellSelectionChanged event
 */
export interface CellSelectionChangedInfo extends BaseContext {
    /**
     * Details of Cells currently selected in the Grid
     */
    selectedCellInfo: SelectedCellInfo;
}
