import { BIT_STRING } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary AllowedSubset * @description * * ### ASN.1 Definition: * * ```asn1 * AllowedSubset ::= BIT STRING {baseObject(0), oneLevel(1), wholeSubtree(2)} * ``` */ export type AllowedSubset = BIT_STRING; /** * @summary AllowedSubset_baseObject * @constant */ export declare const AllowedSubset_baseObject: number; /** * @summary baseObject * @constant */ export declare const baseObject: number; /** * @summary AllowedSubset_oneLevel * @constant */ export declare const AllowedSubset_oneLevel: number; /** * @summary oneLevel * @constant */ export declare const oneLevel: number; /** * @summary AllowedSubset_wholeSubtree * @constant */ export declare const AllowedSubset_wholeSubtree: number; /** * @summary wholeSubtree * @constant */ export declare const wholeSubtree: number; export declare const _decode_AllowedSubset: $.ASN1Decoder; export declare const _encode_AllowedSubset: $.ASN1Encoder; //# sourceMappingURL=AllowedSubset.ta.d.mts.map