import { NULL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TemplateLabel } from '../DefinitionASN1Module/TemplateLabel.ta.mjs'; /** * @summary Representation * @description * * ### ASN.1 Definition: * * ```asn1 * Representation ::= CHOICE { * nameBindingSuperior [0] TemplateLabel, * nameBindingSubordinate [1] TemplateLabel, * attribute [2] TemplateLabel, * relationshipObjectPointer [3] TemplateLabel, * operation NULL * } * ``` */ export type Representation = { nameBindingSuperior: TemplateLabel; } | { nameBindingSubordinate: TemplateLabel; } | { attribute: TemplateLabel; } | { relationshipObjectPointer: TemplateLabel; } | { operation: NULL; }; /** * @summary Decodes an ASN.1 element into a(n) Representation * @function * @param {_Element} el The element being decoded. * @returns {Representation} The decoded data structure. */ export declare function _decode_Representation(el: _Element): Representation; /** * @summary Encodes a(n) Representation 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 Representation, encoded as an ASN.1 Element. */ export declare function _encode_Representation(value: Representation, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Representation.ta.d.mts.map