UNPKG

@tabula/ui-ai-chat

Version:

Allows to embed UI for conversation with AI assistant

12 lines (11 loc) 324 B
import { ReactNode } from 'react'; type Props = { className?: string; suggestions: string[]; onSuggest: (suggestion: string) => void; }; export declare function Suggestions({ className, suggestions, onSuggest }: Props): ReactNode; export declare namespace Suggestions { var displayName: string; } export {};