export interface XPathResult {
    nodes: Node[];
    value: unknown[];
}
export declare function evaluateXPath(xpath: string, nodes: Node[]): XPathResult;
