import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary Associate_result * @description * * ### ASN.1 Definition: * * ```asn1 * Associate-result ::= INTEGER { * accepted(0), rejected-permanent(1), rejected-transient(2)}(0..2, ...) * ``` */ export type Associate_result = INTEGER; /** * @summary Associate_result_accepted * @constant * @type {number} */ export declare const Associate_result_accepted: Associate_result; /** * @summary Associate_result_accepted * @constant * @type {number} */ export declare const accepted: Associate_result; /** * @summary Associate_result_rejected_permanent * @constant * @type {number} */ export declare const Associate_result_rejected_permanent: Associate_result; /** * @summary Associate_result_rejected_permanent * @constant * @type {number} */ export declare const rejected_permanent: Associate_result; /** * @summary Associate_result_rejected_transient * @constant * @type {number} */ export declare const Associate_result_rejected_transient: Associate_result; /** * @summary Associate_result_rejected_transient * @constant * @type {number} */ export declare const rejected_transient: Associate_result; export declare const _decode_Associate_result: $.ASN1Decoder; export declare const _encode_Associate_result: $.ASN1Encoder; //# sourceMappingURL=Associate-result.ta.d.mts.map