import { NULL, GraphicString, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { ServiceSpecificId } from '../UsageMeteringFunction/ServiceSpecificId.ta.mjs'; /** * @summary ProviderId * @description * * ### ASN.1 Definition: * * ```asn1 * ProviderId ::= CHOICE { * objectReference [1] ObjectInstance, * textualName [2] GraphicString, * serviceSpecific [3] ServiceSpecificId, * unknown [4] NULL * } * ``` */ export type ProviderId = { objectReference: ObjectInstance; } | { textualName: GraphicString; } | { serviceSpecific: ServiceSpecificId; } | { unknown: NULL; }; /** * @summary Decodes an ASN.1 element into a(n) ProviderId * @function * @param {_Element} el The element being decoded. * @returns {ProviderId} The decoded data structure. */ export declare function _decode_ProviderId(el: _Element): ProviderId; /** * @summary Encodes a(n) ProviderId 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 ProviderId, encoded as an ASN.1 Element. */ export declare function _encode_ProviderId(value: ProviderId, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ProviderId.ta.d.mts.map