/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { UserItem } from "../../../ui-core/state/transcript-types.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function UserMessage(props: { item: UserItem; theme: Theme; onOpen: (prompt: string) => void; contentWidth?: number | undefined; }): ReactNode;