export interface ClrDatagridComparatorInterface<T> {
    compare(a: T, b: T): number;
}
