UNPKG

@servicetitan/assist-ui

Version:

ServiceTitan Atlas UI Components

14 lines 359 B
import { FC } from 'react'; export interface ChatMessage { content: string; type: 'user' | 'assistant' | 'system'; } interface UserMessageProps { message: string; className?: string; isError?: boolean; onRetry?: () => void; } export declare const UserMessage: FC<UserMessageProps>; export {}; //# sourceMappingURL=user-message.d.ts.map