import { ContentType } from "../ContentType"; import { IContentType } from "../ContentType.interface"; export type TextAnnotationsType = { bold: boolean; italic: boolean; strikethrough: boolean; underline: boolean; code: boolean; color: string; }; export declare class RichText extends ContentType implements IContentType { readonly content: string; readonly link: unknown; readonly annotations: TextAnnotationsType; readonly plainText: string; readonly href: unknown; constructor(richTextJson: any); toHTML(): string; } //# sourceMappingURL=RichText.d.ts.map