import { Any } from './any.js'; import { ObjectIdentifier } from './object_identifier.js'; import { XadesCollection, XadesObject } from './xml_base.js'; /** * Represents the element of an XML signature. * * ```xml * * * * * * * * * * * * * * * * * ``` */ export declare class CommitmentTypeQualifier extends Any { } export declare class CommitmentTypeQualifiers extends XadesCollection { } export declare class ObjectReference extends XadesObject { Value: string; } export declare class ObjectReferenceCollection extends XadesCollection { } export declare class CommitmentTypeIndication extends XadesObject { CommitmentTypeId: ObjectIdentifier; ObjectReference: ObjectReferenceCollection; AllSignedDataObjects: boolean; CommitmentTypeQualifiers: CommitmentTypeQualifiers; }