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