type RichTextSegmentType = 'text' | 'link'; interface RichTextSegment { type: RichTextSegmentType; text: string; } export declare function parseRichText(text: string): RichTextSegment[]; export {};