import { AdaptableSortState } from '../../AdaptableState/Common/AdaptableSortState';
import { BaseContext } from '../../types';
/**
 * EventInfo returned by GridSorted event
 */
export interface GridSortedInfo extends BaseContext {
    /**
     * Current sort state in the Grid
     */
    adaptableSortState: AdaptableSortState;
}
