import { DataObjects } from './data_object.js'; import { KeyInfo } from './key_info.js'; import { SignedInfo } from './signed_info.js'; import { XmlSignatureObject } from './xml_object.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * * ``` */ /** * Represents the element of an XML signature. */ export declare class Signature extends XmlSignatureObject { /** * Gets or sets the ID of the current Signature. */ Id: string; /** * Gets or sets the SignedInfo of the current Signature. */ SignedInfo: SignedInfo; /** * Gets or sets the value of the digital signature. */ SignatureValue: Uint8Array | null; /** * Gets or sets the KeyInfo of the current Signature. */ KeyInfo: KeyInfo; ObjectList: DataObjects; }