import { ICollection } from './ICollection';
export interface ISortedCollection<T> extends ICollection<T> {
}
