import * as $ from "@wildboar/asn1/functional";
import { CommonKeyAttributes } from "../PKCS-15/CommonKeyAttributes.ta.mjs";
import { CommonPublicKeyAttributes } from "../PKCS-15/CommonPublicKeyAttributes.ta.mjs";
import { PKCS15Object } from "../PKCS-15/PKCS15Object.ta.mjs";
/**
 * @summary PublicKeyObject
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * PublicKeyObject {KeyAttributes}  ::=  PKCS15Object {CommonKeyAttributes, CommonPublicKeyAttributes, KeyAttributes}
 * ```
 */
export type PublicKeyObject<KeyAttributes> = PKCS15Object<CommonKeyAttributes, CommonPublicKeyAttributes, KeyAttributes>;
/**
 * @summary Returns a function that will decode an ASN.1 element into a(n) PublicKeyObject
 * @function
 * @param {_Element} el The element being decoded.
 * @returns A function that will decode an ASN.1 element.
 */
export declare function _get_decoder_for_PublicKeyObject<KeyAttributes>(_decode_KeyAttributes: $.ASN1Decoder<KeyAttributes>): $.ASN1Decoder<PublicKeyObject<KeyAttributes>>;
/**
 * @summary Returns a function that will encode a(n) PublicKeyObject into an ASN.1 Element.
 * @function
 * @returns A function that will encode a(n) PublicKeyObject as an ASN.1 element.
 */
export declare function _get_encoder_for_PublicKeyObject<KeyAttributes>(_encode_KeyAttributes: $.ASN1Encoder<KeyAttributes>): $.ASN1Encoder<PublicKeyObject<KeyAttributes>>;
//# sourceMappingURL=PublicKeyObject.ta.d.mts.map