import { SignedDataObjectProperties } from './signed_data_object_properties.js'; import { SignedSignatureProperties } from './signed_signature_properties.js'; import { XadesObject } from './xml_base.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * ``` */ export declare class SignedProperties extends XadesObject { Id: string; SignedSignatureProperties: SignedSignatureProperties; SignedDataObjectProperties: SignedDataObjectProperties; }