import { ASN1Element as _Element, INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary PartialOutcomeQualifier_entryCount * @description * * ### ASN.1 Definition: * * ```asn1 * PartialOutcomeQualifier-entryCount ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type PartialOutcomeQualifier_entryCount = { bestEstimate: INTEGER; } | { lowEstimate: INTEGER; } | { exact: INTEGER; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) PartialOutcomeQualifier_entryCount * @function * @param {_Element} el The element being decoded. * @returns {PartialOutcomeQualifier_entryCount} The decoded data structure. */ export declare function _decode_PartialOutcomeQualifier_entryCount(el: _Element): PartialOutcomeQualifier_entryCount; /** * @summary Encodes a(n) PartialOutcomeQualifier_entryCount 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 PartialOutcomeQualifier_entryCount, encoded as an ASN.1 Element. */ export declare function _encode_PartialOutcomeQualifier_entryCount(value: PartialOutcomeQualifier_entryCount, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=PartialOutcomeQualifier-entryCount.ta.d.mts.map