import { default as React } from 'react'; import { SpinProps } from 'antd'; import { BaseComponentProps } from '../../typings'; export interface OnChainLoadingProps extends BaseComponentProps, SpinProps { /** 大小,单位px */ loadingSize?: number; } /** 加载框 */ declare const OnChainLoading: React.FC; export default OnChainLoading;