export const animationName: "uc-fe-animation-fade"; export default Loading; declare class Loading extends React.Component { static propTypes: { /** 是否加载 */ loading: PropTypes.Requireable; /** 加载指示符 */ indicator: PropTypes.Requireable; /** 文字提示 */ tip: PropTypes.Requireable; /** 遮罩层样式 */ maskStyle: PropTypes.Requireable; /** 遮罩层类名 */ maskClassName: PropTypes.Requireable; /** @ignore */ children: PropTypes.Requireable; }; static defaultProps: { loading: boolean; indicator: JSX.Element; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import React from "react"; import PropTypes from "prop-types";