export type StyledSegment = { text: string; bold: boolean; italic: boolean; strikethrough: boolean; }; /** * Parses a markdown string with **bold**, __bold__, *italic*, ***bold+italic***, * and ~~strikethrough~~ syntax into an array of styled text segments. * * Unrecognized or unmatched markers are emitted as plain text. */ export declare function parseMarkdownSegments(text: string): StyledSegment[];