import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1';
import * as $ from '@wildboar/asn1/functional';
import { ASO_qualifier } from '../ACSE-1/ASO-qualifier.ta.mjs';
import { ASOI_identifier } from '../ACSE-1/ASOI-identifier.ta.mjs';
import { User_Data } from '../ACSE-1/User-Data.ta.mjs';
/**
 * @summary A_DT_apdu
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * A-DT-apdu ::= [APPLICATION 5] IMPLICIT SEQUENCE {
 *   aso-qualifier    [0]  ASO-qualifier OPTIONAL,
 *   asoi-identifier  [1] IMPLICIT ASOI-identifier OPTIONAL,
 *   ...,
 *   ...,
 *   a-user-data      [30] IMPLICIT User-Data
 * }
 * ```
 *
 */
export declare class A_DT_apdu {
    /**
     * @summary `aso_qualifier`.
     * @public
     * @readonly
     */
    readonly aso_qualifier: OPTIONAL<ASO_qualifier>;
    /**
     * @summary `asoi_identifier`.
     * @public
     * @readonly
     */
    readonly asoi_identifier: OPTIONAL<ASOI_identifier>;
    /**
     * @summary Extensions that are not recognized.
     * @public
     * @readonly
     */
    readonly _unrecognizedExtensionsList: _Element[];
    /**
     * @summary `a_user_data`.
     * @public
     * @readonly
     */
    readonly a_user_data: User_Data;
    constructor(
    /**
     * @summary `aso_qualifier`.
     * @public
     * @readonly
     */
    aso_qualifier: OPTIONAL<ASO_qualifier>, 
    /**
     * @summary `asoi_identifier`.
     * @public
     * @readonly
     */
    asoi_identifier: OPTIONAL<ASOI_identifier>, 
    /**
     * @summary Extensions that are not recognized.
     * @public
     * @readonly
     */
    _unrecognizedExtensionsList: _Element[], 
    /**
     * @summary `a_user_data`.
     * @public
     * @readonly
     */
    a_user_data: User_Data);
    /**
     * @summary Restructures an object into a A_DT_apdu
     * @description
     *
     * This takes an `object` and converts it to a `A_DT_apdu`.
     *
     * @public
     * @static
     * @method
     * @param {Object} _o An object having all of the keys and values of a `A_DT_apdu`.
     * @returns {A_DT_apdu}
     */
    static _from_object(_o: {
        [_K in keyof A_DT_apdu]: A_DT_apdu[_K];
    }): A_DT_apdu;
}
/**
 * @summary The Leading Root Component Types of A_DT_apdu
 * @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_A_DT_apdu: $.ComponentSpec[];
/**
 * @summary The Trailing Root Component Types of A_DT_apdu
 * @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_A_DT_apdu: $.ComponentSpec[];
/**
 * @summary The Extension Addition Component Types of A_DT_apdu
 * @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_A_DT_apdu: $.ComponentSpec[];
/**
 * @summary Decodes an ASN.1 element into a(n) A_DT_apdu
 * @function
 * @param {_Element} el The element being decoded.
 * @returns {A_DT_apdu} The decoded data structure.
 */
export declare function _decode_A_DT_apdu(el: _Element): A_DT_apdu;
/**
 * @summary Encodes a(n) A_DT_apdu 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 A_DT_apdu, encoded as an ASN.1 Element.
 */
export declare function _encode_A_DT_apdu(value: A_DT_apdu, elGetter: $.ASN1Encoder<A_DT_apdu>): _Element;
//# sourceMappingURL=A-DT-apdu.ta.d.mts.map