import { Overlay } from '@angular/cdk/overlay'; import { OnDestroy, OnInit, TemplateRef, ViewContainerRef } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { Store } from '@ngrx/store'; import { Attribute, Category, Class, Field } from '@onepoint-yap/dashboard'; import { Observable, Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AdminAttributesFormComponent implements OnInit, OnDestroy { private store; private router; private route; private formBuilder; private overlay; private viewContainerRef; attrForm: UntypedFormGroup; sub: Subscription; nameAlreadyExists$?: Observable; attributeNames?: string[]; fields$: Observable; categories$: Observable; nameAlreadyExists: boolean; isShowedCategory: boolean; catToAdd: Category; selectedClass?: Class; interClass?: Class; selectedAttribute?: Attribute; private overlayRef?; template: TemplateRef; private filterCategories$; constructor(store: Store, router: Router, route: ActivatedRoute, formBuilder: UntypedFormBuilder, overlay: Overlay, viewContainerRef: ViewContainerRef); ngOnInit(): void; ngOnDestroy(): void; goBack(): void; addAttribute(): void; showCategory(): void; closeCategory(): void; search(event: any): void; addCategory(): void; setCategory(cat: Category): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }