import { XmlSignatureCollection, XmlSignatureObject } from './xml_object.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * ``` */ /** * Represents the object element of an XML signature that holds data to be signed. */ export declare class DataObject extends XmlSignatureObject { Id: string; MimeType: string; Encoding: string; } export declare class DataObjects extends XmlSignatureCollection { }