import { OnDestroy } from '@angular/core'; import { Observable, Subject } from 'rxjs'; import { CrudApi } from '../core/realtime-database/crud-api'; import { Entity } from '../model/entity-model'; import * as i0 from "@angular/core"; export declare class DisplaysEntity implements OnDestroy { protected apiService: CrudApi; set id(value: string | null); private idSub; set entity(value: T | null); private entitySub; entity$: Observable; id$: Observable; protected destroySub: Subject; constructor(apiService: CrudApi); pluck(key: K): Observable; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵdir: i0.ɵɵDirectiveDeclaration, never, never, { "id": "id"; "entity": "entity"; }, {}, never>; }