import { IEnumerable } from './enumerable'; import { IList } from './list'; import { IReadOnlyCollection, ReadOnlyCollection } from './read-only-collection'; export interface IReadOnlyList extends IEnumerable, IReadOnlyCollection { } export declare class ReadOnlyList extends ReadOnlyCollection { constructor(list: IList); }