import { BaseComponentProps } from '../../typings'; import { FC } from 'react'; export interface OnChainGlobalLoadingProps extends BaseComponentProps { /** 是否加载 */ isSpinning?: boolean; } /** Global加载 */ declare const OnChainGlobalLoading: FC; export default OnChainGlobalLoading;