import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1';
import * as $ from '@wildboar/asn1/functional';
import { Transfer_syntax_name } from '../ACSE-1/Transfer-syntax-name.ta.mjs';
import { Presentation_context_identifier } from '../ACSE-1/Presentation-context-identifier.ta.mjs';
import { PDV_list_presentation_data_values } from '../ACSE-1/PDV-list-presentation-data-values.ta.mjs';
/**
 * @summary PDV_list
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * PDV-list ::= SEQUENCE {
 *     transfer-syntax-name    Transfer-syntax-name OPTIONAL,
 *     presentation-context-identifier  Presentation-context-identifier,
 *     presentation-data-values         CHOICE {
 *         simple-ASN1-type                 [0] ABSTRACT-SYNTAX.&Type
 *             (CONSTRAINED BY { --  Type corresponding to presentation context identifier -- }),
 *         octet-aligned                    [1] IMPLICIT OCTET STRING,
 *         arbitrary                        [2] IMPLICIT BIT STRING
 *     }    --  see ITU-T Rec. X.226 | ISO/IEC 8823-1.
 * }
 * ```
 *
 */
export declare class PDV_list {
    /**
     * @summary `transfer_syntax_name`.
     * @public
     * @readonly
     */
    readonly transfer_syntax_name: OPTIONAL<Transfer_syntax_name>;
    /**
     * @summary `presentation_context_identifier`.
     * @public
     * @readonly
     */
    readonly presentation_context_identifier: Presentation_context_identifier;
    /**
     * @summary `presentation_data_values`.
     * @public
     * @readonly
     */
    readonly presentation_data_values: PDV_list_presentation_data_values;
    constructor(
    /**
     * @summary `transfer_syntax_name`.
     * @public
     * @readonly
     */
    transfer_syntax_name: OPTIONAL<Transfer_syntax_name>, 
    /**
     * @summary `presentation_context_identifier`.
     * @public
     * @readonly
     */
    presentation_context_identifier: Presentation_context_identifier, 
    /**
     * @summary `presentation_data_values`.
     * @public
     * @readonly
     */
    presentation_data_values: PDV_list_presentation_data_values);
    /**
     * @summary Restructures an object into a PDV_list
     * @description
     *
     * This takes an `object` and converts it to a `PDV_list`.
     *
     * @public
     * @static
     * @method
     * @param {Object} _o An object having all of the keys and values of a `PDV_list`.
     * @returns {PDV_list}
     */
    static _from_object(_o: {
        [_K in keyof PDV_list]: PDV_list[_K];
    }): PDV_list;
}
/**
 * @summary The Leading Root Component Types of PDV_list
 * @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_PDV_list: $.ComponentSpec[];
/**
 * @summary The Trailing Root Component Types of PDV_list
 * @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_PDV_list: $.ComponentSpec[];
/**
 * @summary The Extension Addition Component Types of PDV_list
 * @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_PDV_list: $.ComponentSpec[];
/**
 * @summary Decodes an ASN.1 element into a(n) PDV_list
 * @function
 * @param {_Element} el The element being decoded.
 * @returns {PDV_list} The decoded data structure.
 */
export declare function _decode_PDV_list(el: _Element): PDV_list;
/**
 * @summary Encodes a(n) PDV_list 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 PDV_list, encoded as an ASN.1 Element.
 */
export declare function _encode_PDV_list(value: PDV_list, elGetter: $.ASN1Encoder<PDV_list>): _Element;
//# sourceMappingURL=PDV-list.ta.d.mts.map