import { DatePipe } from '@angular/common'; import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { Store } from '@ngrx/store'; import { Environment } from '@onepoint-yap/dashboard'; import { Observable, Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AdminEnvironmentFormComponent implements OnInit, OnChanges, OnDestroy { private store; private router; private route; private formBuilder; private datePipe; envNames$?: Observable; nameAlreadyExists$?: Observable; private currentEnv$; sub: Subscription; _currentEnv?: Environment; envForm: UntypedFormGroup; envOptions: import("@onepoint-yap/dashboard").EnvOption[]; currentTypeTranslation: string; isSubmitted: boolean; set currentEnv(val: Environment); constructor(store: Store, router: Router, route: ActivatedRoute, formBuilder: UntypedFormBuilder, datePipe: DatePipe); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; goBack(): void; addEnvironment(): void; onTypeChange(type: string): void; getPath(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }