import { Node } from 'domhandler';
declare module 'xpath' {
    function parse(expr: string): {
        select(opts: unknown): Node[];
    };
}
