/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { ColorMode } from "../../../app/ports/terminal-port.js"; import type { AssistantItem } from "../../../ui-core/state/transcript-types.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function AssistantMessage(props: { item: AssistantItem; theme: Theme; colorMode: ColorMode; contentWidth?: number | undefined; }): ReactNode;