import { Expression, XPathContext } from './xpath-types'; export declare class XPath { expression: Expression; constructor(e: Expression); toString(): string; evaluate(c: XPathContext): Expression; }