/**
 * Defines a range of Cell - used in Grid Api Selection methods
 * Typically use either PrimaryKey Values or Row Indexes
 */
export interface GridCellRange {
    /**
     * Columns to select
     */
    columnIds: string[];
    /**
     * Primary Key value of row at start of range
     */
    primaryKeyValueStart?: any;
    /**
     * Primary Key value of row at end of range
     */
    primaryKeyValueEnd?: any;
    /**
     * Index of row at start of range
     */
    rowIndexStart?: any;
    /**
     * Index of row at end of range
     */
    rowIndexEnd?: any;
}
