import { Transform } from '../transform.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * ``` */ export declare class XmlDsigXPathTransform extends Transform { Algorithm: string; XPath: string; /** * Returns the output of the current XmlDsigXPathTransform object */ GetOutput(): any; protected Filter(node: Node, xpath: string): void; protected GetEvaluator(node: Node): XPathEvaluator; protected Evaluate(node: Node, xpath: string): boolean; }