import { IServiceOptions } from './service-options-interface'; export declare abstract class ServiceOptions implements IServiceOptions { readonly headers: { [key: string]: string; }; readonly endPoint: string; static fromUrl(urlString: string, type: { new (hostName: string, port: string, protocol: string, basePath: string): T; }): T; readonly hostname: string; readonly port: string; readonly protocol: string; readonly basePath: string; endpoint: string; private _headers; protected constructor(hostName: string, port: string, protocol: string, basePath?: string); getApiUrl(path: string): string; setHeader(key: string, value: string): void; } //# sourceMappingURL=service-options.d.ts.map