import { ComponentProps, FC } from "react"; import { FloatingUIOptions } from "../Popovers/FloatingUIOptions.js"; import { Thread } from "./Thread.js"; /** * This component is used to display a thread in a floating card. * It can be used when the user clicks on a thread / comment in the document. */ export default function FloatingThreadController(props: { floatingThread?: FC>; floatingUIOptions?: FloatingUIOptions; }): import("react/jsx-runtime").JSX.Element;