import Element from "./Element"; /** * This represents one of the three "Element" XML elements under a modelinfo TypeInfo. * This is the simplest type of Element (the others being a ChoiceElement and a ListElement). * For example: * */ export default class SimpleElement extends Element { name: string; namespace: string; typeName: string; constructor(name: string, namespace: string, typeName: string); } //# sourceMappingURL=SimpleElement.d.ts.map