import type { messageVariants } from "@/components/ui/message"; import type { VariantProps } from "class-variance-authority"; import * as React from "react"; /** * Props for the MessageThreadFull component */ export interface MessageThreadFullProps extends React.HTMLAttributes { /** Optional context key for the thread */ contextKey?: string; /** * Controls the visual styling of messages in the thread. * Possible values include: "default", "compact", etc. * These values are defined in messageVariants from "@/components/ui/message". * @example variant="compact" */ variant?: VariantProps["variant"]; } /** * A full-screen chat thread component with message history, input, and suggestions */ export declare const MessageThreadFull: React.ForwardRefExoticComponent>; //# sourceMappingURL=message-thread-full.d.ts.map