import { BIT_STRING } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary SupportedCmipProfiles * @description * * ### ASN.1 Definition: * * ```asn1 * SupportedCmipProfiles ::= BIT STRING { * aom10(0), -- the managed system supports ISP 11183-1 * aom11(1), -- the managed system supports ISP 11183-3 * aom12(2)} * ``` */ export type SupportedCmipProfiles = BIT_STRING; /** * @summary SupportedCmipProfiles_aom10 * @constant */ export declare const SupportedCmipProfiles_aom10: number; /** * @summary aom10 * @constant */ export declare const aom10: number; /** * @summary SupportedCmipProfiles_aom11 * @constant */ export declare const SupportedCmipProfiles_aom11: number; /** * @summary aom11 * @constant */ export declare const aom11: number; /** * @summary SupportedCmipProfiles_aom12 * @constant */ export declare const SupportedCmipProfiles_aom12: number; /** * @summary aom12 * @constant */ export declare const aom12: number; export declare const _decode_SupportedCmipProfiles: $.ASN1Decoder; export declare const _encode_SupportedCmipProfiles: $.ASN1Encoder; //# sourceMappingURL=SupportedCmipProfiles.ta.d.mts.map