UNPKG

@tabula/ui-ai-chat

Version:

Allows to embed UI for conversation with AI assistant

14 lines (13 loc) 407 B
import { ReactNode } from 'react'; import { Request, TableAction } from '../types'; type Props = { className?: string; pendingPlaceholder?: string; request: Request; tableActions: TableAction[]; }; export declare function AnswerView({ className, pendingPlaceholder, request, tableActions, }: Props): ReactNode; export declare namespace AnswerView { var displayName: string; } export {};