import { Asn1Set } from '@apeleghq/asn1-der';
import type CMSVersion from './CMSVersion.cjs';
import DigestAlgorithmIdentifiers from './DigestAlgorithmIdentifiers.cjs';
import type SignerInfo from './SignerInfo.cjs';
declare class SignerInfos extends Asn1Set {
    digestAlgorithms_: DigestAlgorithmIdentifiers;
    versions_: Set<CMSVersion>;
    constructor(signerInfos: SignerInfo[]);
    get digestAlgorithms(): Readonly<typeof this.digestAlgorithms_>;
    get versions(): Readonly<typeof this.versions_>;
}
export default SignerInfos;
//# sourceMappingURL=SignerInfos.d.ts.map