import { OnDestroy } from '@angular/core'; import { FormBuilder, FormControl } from '@angular/forms'; import { StepperSelectionEvent } from '@angular/cdk/stepper'; import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs'; import { SnackBarService } from '../../../snack-bar/services/snack-bar.service'; import { SideMenuControl } from '../../models/side-menu-control'; import { CaseResourceService } from '../../../resources/engine-endpoint/case-resource.service'; import { NewCaseInjectionData } from './model/new-case-injection-data'; import { TranslateService } from '@ngx-translate/core'; import { HotkeysService } from 'angular2-hotkeys'; import { MatToolbar } from '@angular/material/toolbar'; import { MatOption } from '@angular/material/core'; import { LoadingEmitter } from '../../../utility/loading-emitter'; import * as i0 from "@angular/core"; interface Form { value: string; viewValue: string; version?: string; } export declare abstract class AbstractNewCaseComponent implements OnDestroy { protected _sideMenuControl: SideMenuControl; protected _formBuilder: FormBuilder; protected _snackBarService: SnackBarService; protected _caseResourceService: CaseResourceService; protected _hotkeysService: HotkeysService; protected _translate: TranslateService; processFormControl: FormControl; titleFormControl: FormControl; netVersion: string; options: Array