import { ASN1Element as _Element, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { CertificateRevocationLists } from "../CryptographicMessageSyntax/CertificateRevocationLists.ta";
import { CertificateSet } from "../CryptographicMessageSyntax/CertificateSet.ta";
import { CMSVersion } from "../CryptographicMessageSyntax/CMSVersion.ta";
import { DigestAlgorithmIdentifiers } from "../CryptographicMessageSyntax/DigestAlgorithmIdentifiers.ta";
import { EncapsulatedContentInfo } from "../CryptographicMessageSyntax/EncapsulatedContentInfo.ta";
import { SignerInfos } from "../CryptographicMessageSyntax/SignerInfos.ta";
export { CertificateRevocationLists, _decode_CertificateRevocationLists, _encode_CertificateRevocationLists, } from "../CryptographicMessageSyntax/CertificateRevocationLists.ta";
export { CertificateSet, _decode_CertificateSet, _encode_CertificateSet, } from "../CryptographicMessageSyntax/CertificateSet.ta";
export { CMSVersion, CMSVersion_v0, CMSVersion_v1, CMSVersion_v2, CMSVersion_v3, CMSVersion_v4, v0, v1, v2, v3, v4, _decode_CMSVersion, _encode_CMSVersion, } from "../CryptographicMessageSyntax/CMSVersion.ta";
export { DigestAlgorithmIdentifiers, _decode_DigestAlgorithmIdentifiers, _encode_DigestAlgorithmIdentifiers, } from "../CryptographicMessageSyntax/DigestAlgorithmIdentifiers.ta";
export { EncapsulatedContentInfo, _decode_EncapsulatedContentInfo, _encode_EncapsulatedContentInfo, } from "../CryptographicMessageSyntax/EncapsulatedContentInfo.ta";
export { SignerInfos, _decode_SignerInfos, _encode_SignerInfos, } from "../CryptographicMessageSyntax/SignerInfos.ta";
/**
 * @summary SignedData
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * SignedData ::= SEQUENCE {
 *   version           CMSVersion,
 *   digestAlgorithms  DigestAlgorithmIdentifiers,
 *   encapContentInfo  EncapsulatedContentInfo,
 *   certificates      [0] IMPLICIT CertificateSet OPTIONAL,
 *   crls              [1] IMPLICIT CertificateRevocationLists OPTIONAL,
 *   signerInfos       SignerInfos
 * }
 * ```
 *
 * @class
 */
export declare class SignedData {
    /**
     * @summary `version`.
     * @public
     * @readonly
     */
    readonly version: CMSVersion;
    /**
     * @summary `digestAlgorithms`.
     * @public
     * @readonly
     */
    readonly digestAlgorithms: DigestAlgorithmIdentifiers;
    /**
     * @summary `encapContentInfo`.
     * @public
     * @readonly
     */
    readonly encapContentInfo: EncapsulatedContentInfo;
    /**
     * @summary `certificates`.
     * @public
     * @readonly
     */
    readonly certificates: OPTIONAL<CertificateSet>;
    /**
     * @summary `crls`.
     * @public
     * @readonly
     */
    readonly crls: OPTIONAL<CertificateRevocationLists>;
    /**
     * @summary `signerInfos`.
     * @public
     * @readonly
     */
    readonly signerInfos: SignerInfos;
    constructor(
    /**
     * @summary `version`.
     * @public
     * @readonly
     */
    version: CMSVersion, 
    /**
     * @summary `digestAlgorithms`.
     * @public
     * @readonly
     */
    digestAlgorithms: DigestAlgorithmIdentifiers, 
    /**
     * @summary `encapContentInfo`.
     * @public
     * @readonly
     */
    encapContentInfo: EncapsulatedContentInfo, 
    /**
     * @summary `certificates`.
     * @public
     * @readonly
     */
    certificates: OPTIONAL<CertificateSet>, 
    /**
     * @summary `crls`.
     * @public
     * @readonly
     */
    crls: OPTIONAL<CertificateRevocationLists>, 
    /**
     * @summary `signerInfos`.
     * @public
     * @readonly
     */
    signerInfos: SignerInfos);
    /**
     * @summary Restructures an object into a SignedData
     * @description
     *
     * This takes an `object` and converts it to a `SignedData`.
     *
     * @public
     * @static
     * @method
     * @param {Object} _o An object having all of the keys and values of a `SignedData`.
     * @returns {SignedData}
     */
    static _from_object(_o: {
        [_K in keyof SignedData]: SignedData[_K];
    }): SignedData;
}
/**
 * @summary The Leading Root Component Types of SignedData
 * @description
 *
 * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE.
 *
 * @constant
 */
export declare const _root_component_type_list_1_spec_for_SignedData: $.ComponentSpec[];
/**
 * @summary The Trailing Root Component Types of SignedData
 * @description
 *
 * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE.
 *
 * @constant
 */
export declare const _root_component_type_list_2_spec_for_SignedData: $.ComponentSpec[];
/**
 * @summary The Extension Addition Component Types of SignedData
 * @description
 *
 * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE.
 *
 * @constant
 */
export declare const _extension_additions_list_spec_for_SignedData: $.ComponentSpec[];
/**
 * @summary Decodes an ASN.1 element into a(n) SignedData
 * @function
 * @param {_Element} el The element being decoded.
 * @returns {SignedData} The decoded data structure.
 */
export declare function _decode_SignedData(el: _Element): SignedData;
/**
 * @summary Encodes a(n) SignedData 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 SignedData, encoded as an ASN.1 Element.
 */
export declare function _encode_SignedData(value: SignedData, elGetter: $.ASN1Encoder<SignedData>): _Element;
