import { ActivatedRoute, Router } from '@angular/router'; import { TranslateService } from "@ngx-translate/core"; import { DestroyService } from '../services/destroy.service'; import { NgSnotifyService } from '../services/ng-snotify.service'; import { FunctionUtility } from '../utilities/function-utility'; import { NgxSpinnerService } from 'ngx-spinner'; export declare abstract class InjectBase { protected router: Router; protected route: ActivatedRoute; protected translateService: TranslateService; protected spinnerService: NgxSpinnerService; protected snotifyService: NgSnotifyService; protected destroyService: DestroyService; protected functionUtility: FunctionUtility; }