/** * This is the abstract parent class of all modelinfo Elements. * The three child types are SimpleElement, ListElement and ChoiceElement */ export default abstract class Element { name: string; protected constructor(name: string); } //# sourceMappingURL=Element.d.ts.map