chatbot-frontend-package
Version:
AI chatbot frontend package of Offshorly
10 lines (9 loc) • 398 B
TypeScript
/// <reference types="react" />
type ClearConversationProps = {
filename: string;
clearConversationUrl?: string;
showToast: boolean;
setshowSteps: React.Dispatch<React.SetStateAction<boolean>>;
};
declare const clearConversation: ({ filename, clearConversationUrl, showToast, setshowSteps }: ClearConversationProps) => Promise<undefined>;
export default clearConversation;