declare class XPathUtils { static select(expression: string, node: Node | undefined): "" | T; static getField(path: string, documentNode: Node, formatter?: (value: string) => string): string; static selectArray(expression: string, node: Node | undefined): T; } export default XPathUtils;