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