import { HttpClient, HttpHeaders } from "@angular/common/http"; import { MultiTranslateHttpLoader } from "ngx-translate-multi-http-loader"; export declare class Configurations { static buildTestCommonHeader(config: Configurations, contentType: string): HttpHeaders; static testCommonUserId: any; static testCommonAccessKey: any; static testCommonSecretKey: any; createTranslateLoader: (client: HttpClient) => MultiTranslateHttpLoader; getProduction: () => boolean; getLoginEndPoint: () => string; getMenuEndPoint?: () => string; /** * Following is for test purpose only !!! */ testUserId?: string; testPassword?: string; testAccessKey?: string; testSecretKey?: string; constructor(); }