/** * @file 加载 * @author caifeng01 */ import { FC, ReactNode, ReactElement } from 'react'; import { SizeType } from '../config-provider/SizeContext'; export interface LoadingProps { prefixCls?: string; children?: ReactNode; loading?: boolean; indicator?: ReactElement; tipPosition?: 'right' | 'bottom'; tip?: string; indicatorClassName?: string; size?: SizeType; } declare const Loading: FC; export default Loading;