/** * Loading indicator * * @author: Denis Makarov * @date: 2020-08-19 */ import * as React from 'react'; interface IProps { height?: number | string; width?: number | string; } export declare class LoadingIndicator extends React.Component { static defaultProps: { height: string; width: string; }; render(): JSX.Element; } export {};