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