import * as React from 'react'; import './style/index.less'; export type LoadingSize = 'xs' | 'sm' | 'md' | 'lg'; interface LoadingOptions { children: React.ReactNode; img: React.ReactNode; size: LoadingSize; loading: boolean; tip: string; type: string; } export type LoadingProps = Partial; declare const Loading: React.FC; export default Loading;