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