import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Attribute } from "../InformationFramework/Attribute.ta.mjs"; import { UnboundedDirectoryString } from "../SelectedAttributeTypes/UnboundedDirectoryString.ta.mjs"; /** * @summary SubstringAssertion_Item * @description * * ### ASN.1 Definition: * * ```asn1 * SubstringAssertion-Item ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type SubstringAssertion_Item = { initial: UnboundedDirectoryString; } | { any_: UnboundedDirectoryString; } | { final: UnboundedDirectoryString; } | { control: Attribute; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) SubstringAssertion_Item * @function * @param {_Element} el The element being decoded. * @returns {SubstringAssertion_Item} The decoded data structure. */ export declare function _decode_SubstringAssertion_Item(el: _Element): SubstringAssertion_Item; /** * @summary Encodes a(n) SubstringAssertion_Item 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 SubstringAssertion_Item, encoded as an ASN.1 Element. */ export declare function _encode_SubstringAssertion_Item(value: SubstringAssertion_Item, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SubstringAssertion-Item.ta.d.mts.map