import { XmlSignatureObject } from './xml_object.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * ``` */ export declare class DigestMethod extends XmlSignatureObject { Algorithm: string; constructor(hashNamespace?: string); }