import { ENUMERATED } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; export declare enum _enum_for_ImposedSubset { baseObject = 0, oneLevel = 1, wholeSubtree = 2 } /** * @summary ImposedSubset * @description * * ### ASN.1 Definition: * * ```asn1 * ImposedSubset ::= ENUMERATED {baseObject(0), oneLevel(1), wholeSubtree(2),...} * ``` * * @enum {number} */ export type ImposedSubset = _enum_for_ImposedSubset | ENUMERATED; /** * @summary ImposedSubset_baseObject * @constant * @type {number} */ export declare const ImposedSubset_baseObject: ImposedSubset; /** * @summary baseObject * @constant * @type {number} */ export declare const baseObject: ImposedSubset; /** * @summary ImposedSubset_oneLevel * @constant * @type {number} */ export declare const ImposedSubset_oneLevel: ImposedSubset; /** * @summary oneLevel * @constant * @type {number} */ export declare const oneLevel: ImposedSubset; /** * @summary ImposedSubset_wholeSubtree * @constant * @type {number} */ export declare const ImposedSubset_wholeSubtree: ImposedSubset; /** * @summary wholeSubtree * @constant * @type {number} */ export declare const wholeSubtree: ImposedSubset; export declare const _decode_ImposedSubset: $.ASN1Decoder; export declare const _encode_ImposedSubset: $.ASN1Encoder; //# sourceMappingURL=ImposedSubset.ta.d.mts.map