import { GridRow } from './GridRow';
/**
 * Description of currently selected Rows in AdapTable
 */
export interface SelectedRowInfo<TData = any> {
    /**
     * Array of Grid Rows containing full information about a row in AdapTable
     */
    gridRows: GridRow<TData>[];
}
