@tabula/ui-ai-chat
Version:
Allows to embed UI for conversation with AI assistant
14 lines (13 loc) • 359 B
TypeScript
import { ReactNode } from 'react';
type Props = {
maxLength?: number;
onChange: (value: string) => void;
onApply: () => void;
onCancel: () => void;
value: string;
};
export declare function Edit({ onApply, maxLength, onChange, onCancel, value }: Props): ReactNode;
export declare namespace Edit {
var displayName: string;
}
export {};