import type { RichText } from './blocks'; export interface RichTextOptions { annotations?: { bold?: boolean; italic?: boolean; strikethrough?: boolean; underline?: boolean; code?: boolean; color?: string; }; url?: string; } export declare function richText(content: string, options?: RichTextOptions): RichText;