import { FC } from 'react'; import './index.less'; export interface ILoading { status: 'LOADING' | 'COMPLETED' | 'END' | 'ERROR' | null; reload: () => void; } declare const Loading: FC; export default Loading;