import { ASN1Element as _Element, OCTET_STRING } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
/**
 * @summary PrivateKey
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * PrivateKey  ::=  OCTET STRING
 * ```
 */
export declare type PrivateKey = OCTET_STRING;
/**
 * @summary Decodes an ASN.1 element into a(n) PrivateKey
 * @function
 * @param {_Element} el The element being decoded.
 * @returns {PrivateKey} The decoded data structure.
 */
export declare function _decode_PrivateKey(el: _Element): Uint8Array;
/**
 * @summary Encodes a(n) PrivateKey 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 PrivateKey, encoded as an ASN.1 Element.
 */
export declare function _encode_PrivateKey(value: PrivateKey, elGetter: $.ASN1Encoder<PrivateKey>): _Element;
