import { type ToolCallView } from "./ToolCallLine.js"; export interface MessageView { kind: "user" | "assistant" | "tool" | "info" | "error"; text?: string; tool?: ToolCallView; } /** * Render a single transcript message. Each line is its own component so * Ink's can mount them once and never re-render. */ export declare function Message({ msg }: { msg: MessageView; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Message.d.ts.map