import { ASN1Element as _Element, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { IssuerAndSerialNumber } from "../EnhancedSecurity/IssuerAndSerialNumber.ta.mjs"; /** * @summary ThisEntry * @description * * ### ASN.1 Definition: * * ```asn1 * ThisEntry ::= CHOICE { * onlyOne NULL, * specific IssuerAndSerialNumber, * ... } * ``` */ export type ThisEntry = { onlyOne: NULL; } | { specific: IssuerAndSerialNumber; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) ThisEntry * @function * @param {_Element} el The element being decoded. * @returns {ThisEntry} The decoded data structure. */ export declare function _decode_ThisEntry(el: _Element): ThisEntry; /** * @summary Encodes a(n) ThisEntry into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The ThisEntry, encoded as an ASN.1 Element. */ export declare function _encode_ThisEntry(value: ThisEntry, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ThisEntry.ta.d.mts.map