import './index.css';
import React from 'react';
export type ChatbotProps = {
    filename: string;
    customStyles?: string;
    dataset_id: string;
    project_id: string;
    createQuickMessagesUrl?: string;
    children: React.ReactNode;
};
declare function Chatbot(props: ChatbotProps): React.JSX.Element;
declare namespace Chatbot {
    var Summary: (props: SummaryProps) => React.JSX.Element;
    var Chat: (props: ChatProps) => React.JSX.Element;
}
export type ChatProps = {
    createDatasetPromptUrl?: string;
    createDatasetStepsUrl?: string;
    clearConversationUrl?: string;
    audioToTextUrl?: string;
};
export type SummaryProps = {
    getSummaryUrl?: string;
    createSummaryUrl?: string;
};
export default Chatbot;
