import { OnInit, TemplateRef } from "@angular/core";
import { NgxSuspenseService } from "./ngx-suspense.service";
import { Observable } from "rxjs";
export declare class NgxSuspenseComponent implements OnInit {
    private loadingService;
    fallback: TemplateRef<any>;
    ariaLabel: string;
    bind: NgxSuspenseService;
    isVisible: boolean;
    loading$: Observable<boolean>;
    service: NgxSuspenseService;
    constructor(loadingService: NgxSuspenseService);
    ngOnInit(): void;
    getService(): NgxSuspenseService;
    show(): void;
    hide(): void;
}
