import { HttpClient } from '@angular/common/http';
import { ApiBaseService } from '../../infrastructure/data/api-base.service';
import { OAuthService } from 'angular-oauth2-oidc';
import { Logger } from '../../infrastructure/logger';
import * as i0 from "@angular/core";
export declare abstract class EntityBaseService extends ApiBaseService {
    protected http: HttpClient;
    protected logger: Logger;
    protected oauthService: OAuthService;
    protected env: any;
    constructor(http: HttpClient, logger: Logger, oauthService: OAuthService, env: any);
    protected getUrl(): string;
    static ɵfac: i0.ɵɵFactoryDeclaration<EntityBaseService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<EntityBaseService>;
}
