import { BIT_STRING } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary ClassList * @description * * ### ASN.1 Definition: * * ```asn1 * ClassList ::= BIT STRING { * unmarked (0), * unclassified (1), * restricted (2), * confidential (3), * secret (4), * topSecret (5)} * ``` */ export type ClassList = BIT_STRING; /** * @summary ClassList_unmarked * @constant */ export declare const ClassList_unmarked: number; /** * @summary unmarked * @constant */ export declare const unmarked: number; /** * @summary ClassList_unclassified * @constant */ export declare const ClassList_unclassified: number; /** * @summary unclassified * @constant */ export declare const unclassified: number; /** * @summary ClassList_restricted * @constant */ export declare const ClassList_restricted: number; /** * @summary restricted * @constant */ export declare const restricted: number; /** * @summary ClassList_confidential * @constant */ export declare const ClassList_confidential: number; /** * @summary confidential * @constant */ export declare const confidential: number; /** * @summary ClassList_secret * @constant */ export declare const ClassList_secret: number; /** * @summary secret * @constant */ export declare const secret: number; /** * @summary ClassList_topSecret * @constant */ export declare const ClassList_topSecret: number; /** * @summary topSecret * @constant */ export declare const topSecret: number; export declare const _decode_ClassList: $.ASN1Decoder; export declare const _encode_ClassList: $.ASN1Encoder; //# sourceMappingURL=ClassList.ta.d.mts.map