import { ASN1Element as _Element, ENUMERATED } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; export declare enum _enum_for_MasterOrShadowAccessPoint_category { master = 0, shadow = 1, writeableCopy = 2 } /** * @summary MasterOrShadowAccessPoint_category * @description * * ### ASN.1 Definition: * * ```asn1 * MasterOrShadowAccessPoint-category ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- } * ``` * * @enum {number} */ export type MasterOrShadowAccessPoint_category = _enum_for_MasterOrShadowAccessPoint_category | ENUMERATED; /** * @summary MasterOrShadowAccessPoint_category_master * @constant * @type {number} */ export declare const MasterOrShadowAccessPoint_category_master: MasterOrShadowAccessPoint_category; /** * @summary master * @constant * @type {number} */ export declare const master: MasterOrShadowAccessPoint_category; /** * @summary MasterOrShadowAccessPoint_category_shadow * @constant * @type {number} */ export declare const MasterOrShadowAccessPoint_category_shadow: MasterOrShadowAccessPoint_category; /** * @summary shadow * @constant * @type {number} */ export declare const shadow: MasterOrShadowAccessPoint_category; /** * @summary MasterOrShadowAccessPoint_category_writeableCopy * @constant * @type {number} */ export declare const MasterOrShadowAccessPoint_category_writeableCopy: MasterOrShadowAccessPoint_category; /** * @summary writeableCopy * @constant * @type {number} */ export declare const writeableCopy: MasterOrShadowAccessPoint_category; /** * @summary Decodes an ASN.1 element into a(n) MasterOrShadowAccessPoint_category * @function * @param {_Element} el The element being decoded. * @returns {MasterOrShadowAccessPoint_category} The decoded data structure. */ export declare function _decode_MasterOrShadowAccessPoint_category(el: _Element): MasterOrShadowAccessPoint_category; /** * @summary Encodes a(n) MasterOrShadowAccessPoint_category 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 MasterOrShadowAccessPoint_category, encoded as an ASN.1 Element. */ export declare function _encode_MasterOrShadowAccessPoint_category(value: MasterOrShadowAccessPoint_category, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=MasterOrShadowAccessPoint-category.ta.d.mts.map