import { TextTag } from './TextTag'; export declare type RichTextType = 'plain' | 'markdown'; export interface RichText { type: RichTextType; text: string; tags: TextTag[]; }