import { ASN1Element as _Element, EXTERNAL, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { IncrementalRefresh } from "../DirectoryShadowAbstractService/IncrementalRefresh.ta.mjs"; import { TotalRefresh } from "../DirectoryShadowAbstractService/TotalRefresh.ta.mjs"; /** * @summary RefreshInformation * @description * * ### ASN.1 Definition: * * ```asn1 * RefreshInformation ::= CHOICE { * noRefresh NULL, * total [0] TotalRefresh, * incremental [1] IncrementalRefresh, * otherStrategy EXTERNAL, * ...} * ``` */ export type RefreshInformation = { noRefresh: NULL; } | { total: TotalRefresh; } | { incremental: IncrementalRefresh; } | { otherStrategy: EXTERNAL; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) RefreshInformation * @function * @param {_Element} el The element being decoded. * @returns {RefreshInformation} The decoded data structure. */ export declare function _decode_RefreshInformation(el: _Element): RefreshInformation; /** * @summary Encodes a(n) RefreshInformation 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 RefreshInformation, encoded as an ASN.1 Element. */ export declare function _encode_RefreshInformation(value: RefreshInformation, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=RefreshInformation.ta.d.mts.map