import { FC, PropsWithChildren } from 'react'; interface ILoadingProps { /** * css class */ className?: string; /** * 尺寸,若传入的为 number 类型,则调用 pxTransform(size) 计算 */ size?: number | string; /** * 自定义颜色 */ color?: string; /** * 是否水平排列图标和文字内容 * @default false */ horizontal?: boolean; } declare const Loading: FC>; export default Loading;