import { OnInit, OnDestroy } from '@angular/core';
import { Router } from '@angular/router';
import { HttpService } from '../../services/http.service';
export declare class BaseDetailsComponent implements OnInit, OnDestroy {
    protected router: Router;
    protected httpService: HttpService;
    private routingEventsSubscription;
    constructor(router: Router, httpService: HttpService);
    ngOnInit(): void;
    ngOnDestroy(): void;
    protected getId(): string;
    protected Initialize(response: any): void;
}
