/** * [WHO]: RawText - renders pre-formatted ANSI text without padding * [FROM]: Depends on @catui/tui Component * [TO]: Consumed by modes/interactive/interactive-mode.ts * [HERE]: modes/interactive/components/raw-text.ts - raw ANSI text component */ import type { Component } from "@catui/tui"; /** * RawText - renders pre-formatted ANSI text lines without auto-padding. * Use this when you have pre-formatted content (like a status card) that * already has the exact width you want, and don't want TUI to pad it. */ export declare class RawText implements Component { private lines; constructor(text: string); setText(text: string): void; invalidate(): void; render(_width: number): string[]; }