import { Component } from 'react'; import { LoadingProps } from './PropsType'; declare class Loading extends Component { static defaultProps: { txt: string; }; render(): {}; } export default Loading;