import { ENUMERATED } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; export declare enum _enum_for_CertStatus { good = 0, revoked = 1, on_hold = 2, expired = 3 } /** * @summary CertStatus * @description * * ### ASN.1 Definition: * * ```asn1 * CertStatus ::= ENUMERATED { * good (0), * revoked (1), * on-hold (2), * expired (3), * ... } * ``` * * @enum {number} */ export type CertStatus = _enum_for_CertStatus | ENUMERATED; /** * @summary CertStatus_good * @constant * @type {number} */ export declare const CertStatus_good: CertStatus; /** * @summary good * @constant * @type {number} */ export declare const good: CertStatus; /** * @summary CertStatus_revoked * @constant * @type {number} */ export declare const CertStatus_revoked: CertStatus; /** * @summary revoked * @constant * @type {number} */ export declare const revoked: CertStatus; /** * @summary CertStatus_on_hold * @constant * @type {number} */ export declare const CertStatus_on_hold: CertStatus; /** * @summary on_hold * @constant * @type {number} */ export declare const on_hold: CertStatus; /** * @summary CertStatus_expired * @constant * @type {number} */ export declare const CertStatus_expired: CertStatus; /** * @summary expired * @constant * @type {number} */ export declare const expired: CertStatus; export declare const _decode_CertStatus: $.ASN1Decoder; export declare const _encode_CertStatus: $.ASN1Encoder; //# sourceMappingURL=CertStatus.ta.d.mts.map