import React from 'react'; export interface ILoading { center?: boolean; className?: string; show?: boolean; size?: 'sm' | 'lg' | 'fullscreen'; [x: string]: any; } export declare const Loading: React.FC;