import IXmlType from "./IXmlType"; declare class SimpleXmlType implements IXmlType { private _xmlSimpleType; private _xmlTypeName; private _xmlBaseTypeName; constructor(name: string, baseName?: string); readonly name: string; equals(o: any): boolean; } declare const string: SimpleXmlType; declare const int: SimpleXmlType; declare const decimal: SimpleXmlType; declare const short: SimpleXmlType; declare const date: SimpleXmlType; declare const time: SimpleXmlType; declare const dateTime: SimpleXmlType; declare const boolean: SimpleXmlType; export { SimpleXmlType, string, int, decimal, short, date, time, dateTime, boolean };