/** @jsxImportSource @opentui/react */ /** * Blue multi-line paste chip above the composer. * * Idle: "10 lines pasted" in cyan/blue. * Hover: popover above with first two lines, "…N more", and expand hint. * Double-click: expand the placeholder into full text in the editor. */ import { type ReactNode } from "react"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import { type PastePlaceholderEntry } from "../../../ui-core/composer/paste-placeholder.js"; export declare function PasteChipRow(props: { readonly entries: readonly PastePlaceholderEntry[]; readonly theme: Theme; readonly width: number; readonly onExpand: (id: number) => void; }): ReactNode;