import TypeInfo, { TypeInfoXml } from "./TypeInfo"; export interface ModelInfoXml { ["ns4:modelInfo"]: { $: { name: string; version: string; }; ["ns4:typeInfo"]?: Array; }; } /** * This represents the top-level element in the modelinfo file. * * For the most part, it is a collection of type definitions */ export default class ModelInfo { name: string; version: string; types: Array; constructor(name: string, version: string, types: Array); static createModelInfo(input: ModelInfoXml): ModelInfo; } //# sourceMappingURL=ModelInfo.d.ts.map