import * as React from 'react';
interface IProps {
    width: number | string;
    height: number | string;
}
declare const Loading: React.FC<IProps>;
export default Loading;
