import { HttpClient } from '@angular/common/http'; import { DataService } from './data.service'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class FormService { private http; private dataService; private apiUrl; header: any; parentQuestions: any; subformData: any; constructor(http: HttpClient, dataService: DataService); getQuestions(moduleName: string, pageNumber?: number, rowSet?: number, progressiveLoading?: boolean, country?: string): Observable; fetchDataFromDatabase(database: any, pageNumber?: number, pageSize?: number, searchString?: string, enablePagination?: boolean): Observable; fetchDataFromLookup(tableName: string): Observable; fetchDataFromExternalAPI(apiConfig: any, selectedValues?: any[]): Observable; submitForm(moduleName: string, formData: FormData, reCAPTCHAToken?: string): Observable; getSubmittedForm(moduleName: string, submissionId: string, pageNumber?: number, rowSet?: number, navigateTo?: string): Observable; updateForm(moduleName: string, submissionId: string, formData: FormData, reCAPTCHAToken?: string): Observable; previewFile(url: any): Observable; getSubformSubmissions(subFormData: any): Observable | undefined; getSafeHeaders(): { [key: string]: string; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }