@tabula/ui-ai-chat
Version:
Allows to embed UI for conversation with AI assistant
15 lines (14 loc) • 410 B
TypeScript
import { ReactNode } from 'react';
type Props = {
className?: string;
id?: number;
prompt: string;
maxLength?: number;
isEditable: boolean;
onResend: (id: number, prompt: string) => void;
};
export declare function PromptView({ className, id, isEditable, maxLength, onResend, prompt, }: Props): ReactNode;
export declare namespace PromptView {
var displayName: string;
}
export {};