import { XPathContext } from '../xpath-types';
import { BinaryOperation } from './binary-operation';
export declare class EqualsOperation extends BinaryOperation {
    evaluate(c: XPathContext): import("../xpath-types").XBoolean;
    toString(): string;
}
