import * as $ from '@wildboar/asn1/functional'; import { LDAPString } from '../Lightweight-Directory-Access-Protocol-V3/LDAPString.ta.mjs'; /** * @summary MatchingRuleId * @description * * ### ASN.1 Definition: * * ```asn1 * MatchingRuleId ::= LDAPString * ``` */ export type MatchingRuleId = LDAPString; /** * @summary Decodes an ASN.1 element into a(n) MatchingRuleId * @function * @param {_Element} el The element being decoded. * @returns {MatchingRuleId} The decoded data structure. */ export declare const _decode_MatchingRuleId: $.ASN1Decoder; /** * @summary Encodes a(n) MatchingRuleId 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 MatchingRuleId, encoded as an ASN.1 Element. */ export declare const _encode_MatchingRuleId: $.ASN1Encoder; //# sourceMappingURL=MatchingRuleId.ta.d.mts.map