import { RELATIVE_OID, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary AP_title_form4 * @description * * ### ASN.1 Definition: * * ```asn1 * AP-title-form4 ::= [0] IMPLICIT RELATIVE-OID * ``` */ export type AP_title_form4 = RELATIVE_OID; /** * @summary Decodes an ASN.1 element into a(n) AP_title_form4 * @function * @param {_Element} el The element being decoded. * @returns {AP_title_form4} The decoded data structure. */ export declare function _decode_AP_title_form4(el: _Element): AP_title_form4; /** * @summary Encodes a(n) AP_title_form4 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 AP_title_form4, encoded as an ASN.1 Element. */ export declare function _encode_AP_title_form4(value: AP_title_form4, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AP-title-form4.ta.d.mts.map