/** * 聊天加载动画组件 * 用于显示 AI 正在思考/加载的状态 */ import React from 'react'; import type { DbChatLoadingProps } from './types'; /** * 加载动画 - 三个点依次闪烁 */ declare const DbChatLoading: React.FC; export default DbChatLoading; export type { DbChatLoadingProps } from './types';