import React from 'react';
import { ChatbotData } from '../../types';
interface FooterProps {
    settings: ChatbotData;
    isExpanded: boolean;
}
declare const Footer: React.FC<FooterProps>;
export default Footer;
