import { OCTET_STRING } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary AttributeValue * @description * * ### ASN.1 Definition: * * ```asn1 * AttributeValue ::= OCTET STRING * ``` */ export type AttributeValue = OCTET_STRING; /** * @summary Decodes an ASN.1 element into a(n) AttributeValue * @function * @param {_Element} el The element being decoded. * @returns {AttributeValue} The decoded data structure. */ export declare const _decode_AttributeValue: $.ASN1Decoder; /** * @summary Encodes a(n) AttributeValue 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 AttributeValue, encoded as an ASN.1 Element. */ export declare const _encode_AttributeValue: $.ASN1Encoder; //# sourceMappingURL=AttributeValue.ta.d.mts.map