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";
export declare class SignedData {
    readonly version: CMSVersion;
    readonly digestAlgorithms: DigestAlgorithmIdentifiers;
    readonly encapContentInfo: EncapsulatedContentInfo;
    readonly certificates: OPTIONAL<CertificateSet>;
    readonly crls: OPTIONAL<CertificateRevocationLists>;
    readonly signerInfos: SignerInfos;
    constructor(version: CMSVersion, digestAlgorithms: DigestAlgorithmIdentifiers, encapContentInfo: EncapsulatedContentInfo, certificates: OPTIONAL<CertificateSet>, crls: OPTIONAL<CertificateRevocationLists>, signerInfos: SignerInfos);
    static _from_object(_o: {
        [_K in keyof SignedData]: SignedData[_K];
    }): SignedData;
}
export declare const _root_component_type_list_1_spec_for_SignedData: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_SignedData: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_SignedData: $.ComponentSpec[];
export declare function _decode_SignedData(el: _Element): SignedData;
export declare function _encode_SignedData(value: SignedData, elGetter: $.ASN1Encoder<SignedData>): _Element;
//# sourceMappingURL=SignedData.ta.d.ts.map