import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { Identifier } from '../DefinitionASN1Module/Identifier.ta.mjs'; /** * @summary DefinedValue * @description * * ### ASN.1 Definition: * * ```asn1 * DefinedValue ::= SEQUENCE { * module [0] Identifier OPTIONAL, * reference [1] Identifier * } * ``` * */ export declare class DefinedValue { /** * @summary `module_`. * @public * @readonly */ readonly module_: OPTIONAL; /** * @summary `reference`. * @public * @readonly */ readonly reference: Identifier; constructor( /** * @summary `module_`. * @public * @readonly */ module_: OPTIONAL, /** * @summary `reference`. * @public * @readonly */ reference: Identifier); /** * @summary Restructures an object into a DefinedValue * @description * * This takes an `object` and converts it to a `DefinedValue`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `DefinedValue`. * @returns {DefinedValue} */ static _from_object(_o: { [_K in keyof DefinedValue]: DefinedValue[_K]; }): DefinedValue; } /** * @summary The Leading Root Component Types of DefinedValue * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_DefinedValue: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of DefinedValue * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_DefinedValue: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of DefinedValue * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_DefinedValue: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) DefinedValue * @function * @param {_Element} el The element being decoded. * @returns {DefinedValue} The decoded data structure. */ export declare function _decode_DefinedValue(el: _Element): DefinedValue; /** * @summary Encodes a(n) DefinedValue 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 DefinedValue, encoded as an ASN.1 Element. */ export declare function _encode_DefinedValue(value: DefinedValue, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=DefinedValue.ta.d.mts.map