import { Primitive } from "../../utils/Primitive.js"; import { type ComponentRef, type ComponentPropsWithoutRef } from "react"; export declare namespace ThreadPrimitiveRoot { type Element = ComponentRef; /** * Props for the ThreadPrimitive.Root component. * Accepts all standard div element props. */ type Props = ComponentPropsWithoutRef; } /** * The root container component for a thread. * * This component serves as the foundational wrapper for all thread-related components. * It provides the basic structure and context needed for thread functionality. * * @example * ```tsx * * * * {() => } * * * * ``` */ export declare const ThreadPrimitiveRoot: import("react").ForwardRefExoticComponent & import("react").HTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=ThreadRoot.d.ts.map