import { BaseService } from '../../services/abstract/baseService'; import { IHttpCommand } from './httpCommand'; declare class DataService extends BaseService { static sharedInstance: DataService; protected logTag: string; apiBaseUrl: string; executeCommand(command: IHttpCommand, keepalive?: boolean): Promise; private getResponseJson; private buildHeaders; buildUrl(endpoint: string, shouldPersonalize: boolean): string; } declare const _default: DataService; export default _default;