import type { FC } from 'react'; interface LoadingProps { className?: string; } /** * LoadingDots - 加载动画点 * * @description 三个点的加载动画组件,提供优雅的等待状态视觉反馈 */ declare const LoadingDots: FC; export default LoadingDots;