import type { ChatbotMessage as ChatbotMessageType } from '../../types/chatbot';
/**
 * Props for the scrollable list of messages
 */
export interface ChatbotMessageListProps {
    messages: ChatbotMessageType[];
    isSending?: boolean;
    isLoading?: boolean;
    emptyHint?: string;
    className?: string;
}
/**
 * Vertical list of messages with auto-scroll to bottom on new items.
 */
export default function ChatbotMessageList({ messages, isSending, isLoading, emptyHint, className, }: Readonly<ChatbotMessageListProps>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ChatbotMessageList.d.ts.map