@botonic/react
Version:
Build Chatbots using React
10 lines (9 loc) • 408 B
TypeScript
import React from 'react';
interface InputPanelProps {
handleAttachment: (event: any) => void;
textareaRef: React.MutableRefObject<HTMLTextAreaElement | undefined>;
host: HTMLElement;
onUserInput?: (event: any) => Promise<void>;
}
export declare const InputPanel: ({ handleAttachment, textareaRef, host, onUserInput, }: InputPanelProps) => import("react/jsx-runtime").JSX.Element;
export {};