import { SignedProperties } from './signed_properties.js'; import { UnsignedProperties } from './unsigned_properties.js'; import { XadesObject } from './xml_base.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * ``` */ export declare class QualifyingProperties extends XadesObject { Target: string; Id: string; SignedProperties: SignedProperties; UnsignedProperties: UnsignedProperties; }