import type { ChatStatus } from "ai"; import { type FormEventHandler, type RefObject } from "react"; interface ChatPromptInputProps { onChange: (value: string) => void; onStop?: () => void; onSubmit: FormEventHandler; status?: ChatStatus; textareaRef: RefObject; value: string; } export declare const ChatPromptInput: ({ onChange, onStop, onSubmit, status, textareaRef, value, }: ChatPromptInputProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=prompt-input.d.ts.map