/** * @author linhd * @date 2021/12/7 13:27 * @description loading */ import React, { FunctionComponent } from 'react'; import './index.scss'; export interface LoadingProps { /** 样式class */ className?: string; /** style */ style?: React.CSSProperties; /** 背景透明度 */ opacity?: number; } export declare const Loading: FunctionComponent; export default Loading;