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