import React from 'react'; import { DataStatusProps } from './types'; import 'cropperjs/dist/cropper.css'; import './index.less'; declare class DataStatus extends React.Component { static STATUS: Record; static defaultProps: { loadingImg: string; loadingIndicator: any; loadingInline: boolean; loadingImgStyles: any; errorImg: string; errorDescription: string; errorOtherProps: any; emptyImg: string; emptyDescription: string; emptyOtherProps: any; loadingImgSize: string; }; render(): JSX.Element; } export default DataStatus;