import { Observable } from 'rxjs'; import { EvkHttpService } from '@evomatik/evk-common'; import { EvkRowFormModel } from '../../models/evk-row-form.model'; import { CatalogosService } from '../../../service/catalogos.service'; export declare class ObtainDataFormService { http: EvkHttpService; catalogosService: CatalogosService; private _idExpediente; idExpediente: string; constructor(http: EvkHttpService, catalogosService: CatalogosService); getFields(rows: EvkRowFormModel[]): Promise>; resolveAfter2Seconds(rows: EvkRowFormModel[]): Promise<{}>; cargaOptions(url: string): Observable; cargaOptionsFromExpediente(dato: string): Observable; }