import { IList } from './IList';
export interface ISortedList<T> extends IList<T> {
}
