import React from 'react';
import './Loading.scss';
interface LoadingProps {
    detail?: string | boolean;
    smallHorizontal?: boolean;
    small?: string | boolean;
    title?: string | boolean;
}
export declare const Loading: React.FC<LoadingProps>;
export {};
