chatbot-frontend-package-test
Version:
AI chatbot frontend package of Offshorly - TEST VERSION
17 lines (16 loc) • 448 B
TypeScript
import './index.css';
import React from 'react';
export type ChatbotProps = {
filename: string;
customStyles?: string;
children: React.ReactNode;
};
declare function Chatbot(props: ChatbotProps): React.JSX.Element;
declare namespace Chatbot {
var Summary: () => React.JSX.Element;
var Chat: (props: ChatProps) => React.JSX.Element;
}
export type ChatProps = {
datasetName: string;
};
export default Chatbot;