import { Expression, XPathContext } from './xpath-types'; export declare class VariableReference extends Expression { variable: string; constructor(v: string); toString(): string; evaluate(c: XPathContext): Expression; }