import { ThreadFloatingCardProps } from './types'; /** * SuggestionThreadFloatingCard * * Shown in place of the generic ThreadFloatingCard for submitted suggestions * (comments with `isSuggestion: true`). Renders the Figma-specified layout: * author + timestamp header, Accept/Reject (owner) or Withdraw (author) * actions, a one-line diff summary (Add/Delete/Replace), and a reply input. * * Renders from the underlying IComment — the same source ThreadFloatingCard * uses — so once a draft is submitted, nothing else in the pipeline needs * to change to show the suggestion here. */ export declare const SuggestionThreadFloatingCard: ({ thread, comment, isHidden, registerCardNode, }: ThreadFloatingCardProps) => import("react/jsx-runtime").JSX.Element | null;