import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AccessDescription } from "../PkiPmiExternalDataTypes/AccessDescription.ta.mjs"; /** * @summary SubjectInfoAccessSyntax * @description * * ### ASN.1 Definition: * * ```asn1 * SubjectInfoAccessSyntax ::= SEQUENCE SIZE (1..MAX) OF AccessDescription * ``` */ export type SubjectInfoAccessSyntax = AccessDescription[]; /** * @summary Decodes an ASN.1 element into a(n) SubjectInfoAccessSyntax * @function * @param {_Element} el The element being decoded. * @returns {SubjectInfoAccessSyntax} The decoded data structure. */ export declare function _decode_SubjectInfoAccessSyntax(el: _Element): SubjectInfoAccessSyntax; /** * @summary Encodes a(n) SubjectInfoAccessSyntax 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 SubjectInfoAccessSyntax, encoded as an ASN.1 Element. */ export declare function _encode_SubjectInfoAccessSyntax(value: SubjectInfoAccessSyntax, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SubjectInfoAccessSyntax.ta.d.mts.map