export interface TextSegment { text: string; linkSrc?: string; linkTitle?: string; bold?: boolean; italic?: boolean; newline?: boolean; } export declare const parseFormattedString: (input: string) => TextSegment[];