import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { SizeTypes } from "../../interfaces/types/SizeTypes"; export interface LoadingInterfaceProps extends PropsInterface { size?: SizeTypes; } export declare class Loading extends PureComponent { constructor(props: any); static defaultProps: { size: string; }; render(): JSX.Element; }