import { ICollection } from './ICollection'; import { IItemDecorator } from './IItemDecorator'; export declare class Collections { static makeDecoratedList(list: ICollection, itemDecorator: IItemDecorator): ICollection; static makeList(value: TItem): ICollection; static emptyList(): ICollection; }