import { XadesCollection, XadesObject } from './xml_base.js'; import { DigestAlgAndValueType } from './signing_certificate.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * * * * * ``` */ export declare class CertV2 extends XadesObject { CertDigest: DigestAlgAndValueType; IssuerSerial: Uint8Array; Uri: string; } export declare class CertIDListV2 extends XadesCollection { } export declare class SigningCertificateV2 extends CertIDListV2 { }