export interface FormattedLine { text: string; style: string; raw?: boolean; } /** * Format the welcome message body into coloured terminal lines. * * The body is a small DSL of line shapes: * - `Codeep vX.X.X · Provider · Model` — version header * - ` Project ` — project label * - ` Access ` — access label * - ` Mode ` — mode label * - lines containing `⚠` — amber warning * - lines containing `/help` — shortcuts hint * * Anything else is pushed verbatim. */ export declare function formatWelcomeMessage(content: string): FormattedLine[];