/** Создает коллекцию треков  */
export declare const createTrackCollection: <T extends unknown>() => {
    clear: () => void;
    has: (id: string) => boolean;
    get: (id: string) => T;
    getByIndex: (index: number) => T;
    push: (id: string, track: T) => void;
    some: (predicate: (item: T) => boolean) => boolean;
    readonly length: number;
};
//# sourceMappingURL=trackCollection.d.ts.map