import { Asn1Sequence } from '@apeleghq/asn1-der';
import type ContentEncryptionAlgorithmIdentifier from './ContentEncryptionAlgorithmIdentifier.js';
import type ContentType from './ContentType.js';
import type EncryptedContent from './EncryptedContent.js';
declare class EncryptedContentInfo extends Asn1Sequence {
    contentType_: ContentType;
    constructor(contentType: ContentType, contentEncryptionAlgorithm: ContentEncryptionAlgorithmIdentifier, encryptedContent?: EncryptedContent);
    get contentType(): Readonly<typeof this.contentType_>;
}
export default EncryptedContentInfo;
//# sourceMappingURL=EncryptedContentInfo.d.ts.map