/** * @fileoverview Card shown in the attachment tray for large pasted text blocks. * * Renders a truncated preview of clipboard text pasted into the input (>300 chars) with a "PASTED" label * and a hover-revealed remove button. */ import React from "react"; import { PastedContent } from "../../types/research"; interface PastedContentCardProps { content: PastedContent; onRemove: (id: string) => void; } export declare const PastedContentCard: React.FC; export {};