import { OBJECT_IDENTIFIER, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary CertCheckSet * @description * * ### ASN.1 Definition: * * ```asn1 * CertCheckSet OBJECT IDENTIFIER ::= { * id-stc-build-pkc-path | id-stc-build-valid-pkc-path | * id-stc-build-status-checked-pkc-path, ... } * ``` * * @type {OBJECT_IDENTIFIER} */ export type CertCheckSet = OBJECT_IDENTIFIER; export declare function _decode_CertCheckSet(el: _Element): CertCheckSet; export declare function _encode_CertCheckSet(value: CertCheckSet, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=CertCheckSet.vsa.d.mts.map