import type { PostThread } from "../api/index.js"; import "../main.css"; import { Theme } from "../utils.js"; type Props = { postThread: PostThread; theme?: Theme; hidePost?: boolean; }; export declare const EmbeddedPostThread: ({ postThread, theme, hidePost, }: Props) => import("react").JSX.Element; export {};