import { OnDestroy } from "@angular/core";
import { EventBus, IEvent } from "@nova-ui/bits";
import { PizzagnaService } from "../../pizzagna/services/pizzagna.service";
import { IHasComponent } from "../../types";
export declare class LoadingAdapter implements OnDestroy, IHasComponent {
    private eventBus;
    private pizzagnaService;
    private loadingMap;
    private readonly destroy$;
    private componentId;
    constructor(eventBus: EventBus<IEvent>, pizzagnaService: PizzagnaService);
    ngOnDestroy(): void;
    setComponent(component: any, componentId: string): void;
}
