import { ENUMERATED } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; export declare enum _enum_for_SearchRequest_scope { baseObject = 0, singleLevel = 1, wholeSubtree = 2 } /** * @summary SearchRequest_scope * @description * * ### ASN.1 Definition: * * ```asn1 * SearchRequest-scope ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- } * ``` * * @enum {number} */ export type SearchRequest_scope = _enum_for_SearchRequest_scope | ENUMERATED; /** * @summary SearchRequest_scope_baseObject * @constant * @type {number} */ export declare const SearchRequest_scope_baseObject: SearchRequest_scope; /** * @summary baseObject * @constant * @type {number} */ export declare const baseObject: SearchRequest_scope; /** * @summary SearchRequest_scope_singleLevel * @constant * @type {number} */ export declare const SearchRequest_scope_singleLevel: SearchRequest_scope; /** * @summary singleLevel * @constant * @type {number} */ export declare const singleLevel: SearchRequest_scope; /** * @summary SearchRequest_scope_wholeSubtree * @constant * @type {number} */ export declare const SearchRequest_scope_wholeSubtree: SearchRequest_scope; /** * @summary wholeSubtree * @constant * @type {number} */ export declare const wholeSubtree: SearchRequest_scope; /** * @summary Decodes an ASN.1 element into a(n) SearchRequest_scope * @function * @param {_Element} el The element being decoded. * @returns {SearchRequest_scope} The decoded data structure. */ export declare const _decode_SearchRequest_scope: $.ASN1Decoder; /** * @summary Encodes a(n) SearchRequest_scope 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 SearchRequest_scope, encoded as an ASN.1 Element. */ export declare const _encode_SearchRequest_scope: $.ASN1Encoder; //# sourceMappingURL=SearchRequest-scope.ta.d.mts.map