export type StyledSpan = { text: string; fg?: string; bg?: string; bold?: boolean; }; export declare function parseStyledText(input: string): StyledSpan[]; export declare function escapeStyleTags(text: string): string;