import Protocol from './protocol'; declare class Catalog { private readonly _modelId; private readonly _version; private readonly _metadata; constructor(summary: any); getModelString(): string; getModelId(): Protocol.ModelId; getVersion(): number; getMetadata(): any; private _validateModelId; } export default Catalog;