import { HttpClient } from '@angular/common/http'; import { ConfigService, MessageService, LanguageService } from '../../core'; import { MapService } from '../../map/shared/map.service'; import { ExportOptions } from './import-export.interface'; export declare class ImportExportService { private http; private config; private mapService; private messageService; private languageService; private urlApi; constructor(http: HttpClient, config: ConfigService, mapService: MapService, messageService: MessageService, languageService: LanguageService); import(fileList: Array, sourceSrs?: string): void; onFilesInvalid(fileList: Array): void; export(data: ExportOptions): void; private download(text, fileName, mineType?); private readFile(file, sourceSrs, i?, count?); private addFeaturesLayer(text, title, sourceSrs, mimeType?); private callImportService(file, sourceSrs); private callExportService(geojson, title); }