import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { DataService } from './data.service'; import { AuthService } from './auth.service'; import * as i0 from "@angular/core"; export declare class CountryService { private http; private dataService; private authService; private apiUrl; header: any; constructor(http: HttpClient, dataService: DataService, authService: AuthService); loadCountryDetails(page: number, size: number, searchKey: string): Observable; processCountryDetails(data: any[]): { value: string; label: string; }[]; getCurrencySymbol(): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }