import { XmlObject } from 'xml-core'; import { XmlSignatureCollection, XmlSignatureObject } from './xml_object.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * ``` */ export declare class SignatureMethodOther extends XmlSignatureCollection { OnLoadXml(element: Element): void; } export declare class SignatureMethod extends XmlSignatureObject { Algorithm: string; /** * Parameters for the XML Signature HMAC Algorithm. * The parameters include an optional output length which specifies * the MAC truncation length in bits. * * @type {number} * @memberOf SignatureMethod */ HMACOutputLength: number; Any: SignatureMethodOther; }