import { ASN1Element as _Element, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { CoordinateShadowUpdateResultData } from "../DirectoryShadowAbstractService/CoordinateShadowUpdateResultData.ta.mjs"; import { OPTIONALLY_PROTECTED } from "../EnhancedSecurity/OPTIONALLY-PROTECTED.ta.mjs"; /** * @summary CoordinateShadowUpdateResult * @description * * ### ASN.1 Definition: * * ```asn1 * CoordinateShadowUpdateResult ::= CHOICE { * null NULL, * information OPTIONALLY-PROTECTED{ CoordinateShadowUpdateResultData }, * ...} * ``` */ export type CoordinateShadowUpdateResult = { null_: NULL; } | { information: OPTIONALLY_PROTECTED; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) CoordinateShadowUpdateResult * @function * @param {_Element} el The element being decoded. * @returns {CoordinateShadowUpdateResult} The decoded data structure. */ export declare function _decode_CoordinateShadowUpdateResult(el: _Element): CoordinateShadowUpdateResult; /** * @summary Encodes a(n) CoordinateShadowUpdateResult into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The CoordinateShadowUpdateResult, encoded as an ASN.1 Element. */ export declare function _encode_CoordinateShadowUpdateResult(value: CoordinateShadowUpdateResult, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=CoordinateShadowUpdateResult.ta.d.mts.map