import { Observable, Subscription } from 'rxjs';
export declare type LoadingType = Observable<any> | Promise<any> | Array<Promise<any>> | Array<Observable<any>> | Subscription | undefined;
