import { IContentType } from "./ContentType.interface"; export declare abstract class ContentType implements IContentType { readonly raw: any; readonly type: string; readonly content: any; constructor(rawContentJson: any); abstract toHTML(): string; } //# sourceMappingURL=ContentType.d.ts.map