import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { IssuerAndSerialNumber } from "../PKCS7/IssuerAndSerialNumber.ta";
import { RecipientKeyIdentifier } from "../PKCS7/RecipientKeyIdentifier.ta";
export { IssuerAndSerialNumber, _decode_IssuerAndSerialNumber, _encode_IssuerAndSerialNumber, } from "../PKCS7/IssuerAndSerialNumber.ta";
export { RecipientKeyIdentifier, _decode_RecipientKeyIdentifier, _encode_RecipientKeyIdentifier, } from "../PKCS7/RecipientKeyIdentifier.ta";
/**
 * @summary KeyAgreementRecipientIdentifier
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * KeyAgreementRecipientIdentifier  ::=  CHOICE {
 *     issuerAndSerialNumber   IssuerAndSerialNumber,
 *     recipientKeyIdentifier  [0]  RecipientKeyIdentifier
 * }
 * ```
 */
export declare type KeyAgreementRecipientIdentifier = {
    issuerAndSerialNumber: IssuerAndSerialNumber;
} | {
    recipientKeyIdentifier: RecipientKeyIdentifier;
};
/**
 * @summary Decodes an ASN.1 element into a(n) KeyAgreementRecipientIdentifier
 * @function
 * @param {_Element} el The element being decoded.
 * @returns {KeyAgreementRecipientIdentifier} The decoded data structure.
 */
export declare function _decode_KeyAgreementRecipientIdentifier(el: _Element): KeyAgreementRecipientIdentifier;
/**
 * @summary Encodes a(n) KeyAgreementRecipientIdentifier into an ASN.1 Element.
 * @function
 * @param {value} el The element being decoded.
 * @param elGetter A function that can be used to get new ASN.1 elements.
 * @returns {_Element} The KeyAgreementRecipientIdentifier, encoded as an ASN.1 Element.
 */
export declare function _encode_KeyAgreementRecipientIdentifier(value: KeyAgreementRecipientIdentifier, elGetter: $.ASN1Encoder<KeyAgreementRecipientIdentifier>): _Element;
