import React from 'react'; import { SpinProps } from 'antd'; import './index.less'; declare type MaskType = { width: number | string; height: number | string; backgroundColor: string; }; export interface PisellLoadingProps extends SpinProps { /** 是否正在加载中 */ loading: boolean; /** mask是否展示 对象形式时是mask配置 */ mask?: boolean | MaskType; /** 是否全屏 */ fullscreen?: boolean; /** 延迟显示加载效果的时间(防止闪烁) */ delay?: number; } declare const PisellLoading: (props: PisellLoadingProps) => React.JSX.Element; export default PisellLoading;