export declare const APPLICATION_XML = "application/xml"; export declare const DEFAULT_PREFIX = ""; export declare const DEFAULT_NAMESPACE_URI = ""; export declare enum XmlNodeType { None = 0,// Read method has not been Element = 1, Attribute = 2, Text = 3,// The text content of a node. CDATA = 4,// For example, EntityReference = 5,// A reference to an entity Entity = 6,// For example, ProcessingInstruction = 7,// For example, Comment = 8, Document = 9,// A document object that, as the root of the document tree, DocumentType = 10,// For example, DocumentFragment = 11, Notation = 12,// A For example, Whitespace = 13,// White space between markup. SignificantWhitespace = 14,// White space between markup in a mixed content model EndElement = 15,// An end element tag (for example, ). EndEntity = 16,// Returned when XmlReader gets to the end of the entity XmlDeclaration = 17 }