/** @jsxImportSource @opentui/react */ /** * Actions for a user prompt row (copy / resend). Opened by clicking a prompt * bubble in the transcript. Centered card with a fixed max width; long prompts * soft-wrap to the card and scroll inside a fixed-height body (never paint past * the border). */ import { type ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { PromptActionsRequest } from "../../../ui-core/controllers/overlay-controller.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function PromptActionsModal(props: { services: AppServices; theme: Theme; request: PromptActionsRequest; }): ReactNode;