import { UnsignedDataObjectProperties } from './unsigned_data_object_property.js'; import { UnsignedSignatureProperties } from './unsigned_signature_properties.js'; import { XadesObject } from './xml_base.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * ``` */ export declare class UnsignedProperties extends XadesObject { Id: string; UnsignedSignatureProperties: UnsignedSignatureProperties; UnsignedDataObjectProperties: UnsignedDataObjectProperties; }