UNPKG

@tabula/ui-ai-chat

Version:

Allows to embed UI for conversation with AI assistant

12 lines (11 loc) 293 B
import { ReactNode } from 'react'; type Props = { className?: string; onClear?: () => void; value: string; }; export declare function PromptContext({ className, onClear, value }: Props): ReactNode; export declare namespace PromptContext { var displayName: string; } export {};