import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { Store } from '@ngrx/store'; import { Predicate } from '@onepoint-yap/dashboard'; import { Observable, Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AdminPredicatesFormComponent implements OnChanges, OnDestroy { private store; private router; private route; private formBuilder; private rules$; predicatesUsed$: Observable; predicateNames$?: Observable; nameAlreadyExists$?: Observable; sub: Subscription; _currentPred?: Predicate; predForm: UntypedFormGroup; openedModal: boolean; isSubmitted: boolean; validateAction: () => void; cancelAction: () => void; set currentPred(val: Predicate); constructor(store: Store, router: Router, route: ActivatedRoute, formBuilder: UntypedFormBuilder); ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; goBack(): void; addPredicate(): void; checkModal(): void; getPath(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }