interface ChatInputProps extends React.HTMLAttributes<HTMLFormElement> {
    onSend?: (message: string) => void;
    disabled?: boolean;
}
export declare function ChatInput({ onSend, className, disabled, ...props }: ChatInputProps): import("react/jsx-runtime").JSX.Element;
export {};
