export interface BannerInfo { /** crtr version, e.g. "0.3.78" → shown as "v0.3.78". */ version?: string; /** Active profile name, e.g. "northlight". */ profile?: string; /** Launch directory (already home-abbreviated if desired). */ cwd?: string; } /** The crouton banner as pre-colored terminal lines: the cube on the left with * name/version, tagline, profile, and launch path stacked beside rows 1–4. * Missing facts are simply omitted (their row shows just the cube). No * leading/trailing blank lines — the caller frames it. */ export declare function croutonBannerLines(info?: BannerInfo): string[];