import type { Attachment } from '../types/index.ts'; interface Props { onSend: (text: string, attachments?: Attachment[]) => void; disabled?: boolean; placeholder?: string; allowFileUploads?: boolean; } export declare function InputArea({ onSend, disabled, placeholder, allowFileUploads }: Props): import("react/jsx-runtime").JSX.Element; export {};