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