import type { ReactNode } from 'react'; type ChatInputPanelProps = { isAtBottom: boolean; onScrollToBottom: () => void; className?: string; children?: ReactNode; }; declare function ChatInputPanel({ isAtBottom, children, onScrollToBottom, className, }: ChatInputPanelProps): import("react/jsx-runtime").JSX.Element; export type { ChatInputPanelProps }; export { ChatInputPanel };