import { Asn1Set } from '@apeleghq/asn1-der';
import RecipientInfo from './RecipientInfo.js';
declare class RecipientInfos extends Asn1Set {
    kinds_: Set<RecipientInfo['kind']>;
    versions_: Set<RecipientInfo['version']>;
    constructor(recipientInfos: RecipientInfo[]);
    get kinds(): Readonly<typeof this.kinds_>;
    get versions(): Readonly<typeof this.versions_>;
}
export default RecipientInfos;
//# sourceMappingURL=RecipientInfos.d.ts.map