@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
47 lines (46 loc) • 2.31 kB
TypeScript
import { type PropsWithChildren } from 'react';
import { type AvatarProps } from './Avatar';
export type ChatProps = PropsWithChildren<{
className?: string;
}>;
export declare const Chat: ({ children, className }: ChatProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageListProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageList: import("react").ForwardRefExoticComponent<{
className?: string;
} & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;
export type ChatMessageProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessage: ({ children, className }: ChatMessageProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageAvatarProps = PropsWithChildren<Partial<AvatarProps> & {
asChild?: boolean;
}>;
export declare const ChatMessageAvatar: ({ className, asChild, ...props }: ChatMessageAvatarProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageBodyProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageBody: ({ children, className, }: ChatMessageBodyProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageHeaderProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageHeader: ({ children, className, }: ChatMessageHeaderProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageNameProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageName: ({ children, className, }: ChatMessageNameProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageDateProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageDate: ({ children, className, }: ChatMessageDateProps) => import("react/jsx-runtime").JSX.Element;
export type ChatMessageContentProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatMessageContent: ({ children, className, }: ChatMessageContentProps) => import("react/jsx-runtime").JSX.Element;
export type ChatFooterProps = PropsWithChildren<{
className?: string;
}>;
export declare const ChatFooter: ({ children, className }: ChatFooterProps) => import("react/jsx-runtime").JSX.Element;