declare const xsiNamespaceURI = "http://www.w3.org/2001/XMLSchema-instance"; declare const xsiNamespacePrefix = "xsi"; declare const nodeTypeElement = 1; declare const nodeNameParserError = "parsererror"; declare const getNamespacePrefix: (element: Element, namespaceURI: string) => string; interface INamespaceOptions { namespacePrefix?: string; namespaceURI?: string; } declare const getElementsByName: (element: Element, localName: string, opts?: INamespaceOptions) => Element[]; declare const getLocalName: (nodeName: string) => string; declare const getFirstElementChild: (element: Element) => Element; export { xsiNamespaceURI, xsiNamespacePrefix, nodeTypeElement, nodeNameParserError, getNamespacePrefix, getElementsByName, getFirstElementChild, getLocalName, INamespaceOptions };