import type DERObject from './DERObject.js'; import type ObjectIdentifier from './ObjectIdentifier.js'; export default class ContentInfo implements DERObject { contentType: ObjectIdentifier; content: TContent; constructor(contentType: ObjectIdentifier, content: TContent); toDER(): number[]; }