import { type CacheCatalogStructure } from '../cache-catalog-structure.js';
import { type CachedItemStructure } from '../cached-item-structure.js';
export declare class CacheCatalog implements CacheCatalogStructure {
    readonly version: string;
    readonly soloVersion: string;
    readonly items: readonly CachedItemStructure[];
    constructor(version: string, soloVersion: string, items: readonly CachedItemStructure[]);
}
