import { ASN1Element as _Element, NumericString, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary ExtendedNetworkAddress_e163_4_address * @description * * ### ASN.1 Definition: * * ```asn1 * ExtendedNetworkAddress-e163-4-address ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class ExtendedNetworkAddress_e163_4_address { /** * @summary `number_`. * @public * @readonly */ readonly number_: NumericString; /** * @summary `sub_address`. * @public * @readonly */ readonly sub_address?: OPTIONAL; constructor( /** * @summary `number_`. * @public * @readonly */ number_: NumericString, /** * @summary `sub_address`. * @public * @readonly */ sub_address?: OPTIONAL); /** * @summary Restructures an object into a ExtendedNetworkAddress_e163_4_address * @description * * This takes an `object` and converts it to a `ExtendedNetworkAddress_e163_4_address`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ExtendedNetworkAddress_e163_4_address`. * @returns {ExtendedNetworkAddress_e163_4_address} */ static _from_object(_o: Partial<{ [_K in keyof ExtendedNetworkAddress_e163_4_address]: ExtendedNetworkAddress_e163_4_address[_K]; }>): ExtendedNetworkAddress_e163_4_address; } /** * @summary The Leading Root Component Types of ExtendedNetworkAddress_e163_4_address * @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_ExtendedNetworkAddress_e163_4_address: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ExtendedNetworkAddress_e163_4_address * @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_ExtendedNetworkAddress_e163_4_address: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ExtendedNetworkAddress_e163_4_address * @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_ExtendedNetworkAddress_e163_4_address: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ExtendedNetworkAddress_e163_4_address * @function * @param {_Element} el The element being decoded. * @returns {ExtendedNetworkAddress_e163_4_address} The decoded data structure. */ export declare function _decode_ExtendedNetworkAddress_e163_4_address(el: _Element): ExtendedNetworkAddress_e163_4_address; /** * @summary Encodes a(n) ExtendedNetworkAddress_e163_4_address 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 ExtendedNetworkAddress_e163_4_address, encoded as an ASN.1 Element. */ export declare function _encode_ExtendedNetworkAddress_e163_4_address(value: ExtendedNetworkAddress_e163_4_address, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ExtendedNetworkAddress-e163-4-address.ta.d.mts.map