import { default as React } from 'react';
import { ChatWindowProps } from '../types';
interface ChatWindowWithApiKeyProps extends ChatWindowProps {
    apiKeyMissing?: boolean;
}
declare const ChatWindow: React.FC<ChatWindowWithApiKeyProps>;
export default ChatWindow;
