import { NetworkHelper } from '../../helpers'; export declare abstract class BaseNetworkRequestService { protected baseUrl: string; protected networkService: NetworkHelper; constructor(opts: { name: string; scope: string; baseUrl?: string; }); getRequestPath(opts: { paths: Array; }): string; getRequestUrl(opts: { baseUrl?: string; paths: Array; }): string; getNetworkService(): NetworkHelper; }