import { FC } from 'react'; export interface LoadingProps { /** 是否完成 */ done?: boolean; } declare const Loading: FC; export default Loading;