UNPKG

@chatui/core

Version:

The React library for Chatbot UI

9 lines (8 loc) 268 B
import React from 'react'; export interface ThinkProps { className?: string; isDone?: boolean; thinkTime?: number; children?: React.ReactNode; } export declare const Think: ({ className, isDone, thinkTime, children }: ThinkProps) => React.JSX.Element;