import { IFexRepositoryPort } from "../ports/fex/fex-repository.port"; import { IFEXAuthorizeInput, IFEXAuthorizeOutput, IFEXGetCMPInput, IFEXGetCMPOutput, IFEXGetLast_CMPInput, IFEXGetLast_CMPOutput, IFEXGetLast_IDInput, IFEXGetLast_IDOutput, IFEXCheck_PermisoInput, IFEXCheck_PermisoOutput, IFEXGetPARAM_Cbte_TipoInput, IFEXGetPARAM_Cbte_TipoOutput, IFEXGetPARAM_Tipo_ExpoInput, IFEXGetPARAM_Tipo_ExpoOutput, IFEXGetPARAM_IncotermsInput, IFEXGetPARAM_IncotermsOutput, IFEXGetPARAM_IdiomasInput, IFEXGetPARAM_IdiomasOutput, IFEXGetPARAM_UMedInput, IFEXGetPARAM_UMedOutput, IFEXGetPARAM_DST_paisInput, IFEXGetPARAM_DST_paisOutput, IFEXGetPARAM_DST_CUITInput, IFEXGetPARAM_DST_CUITOutput, IFEXGetPARAM_MONInput, IFEXGetPARAM_MONOutput, IFEXGetPARAM_MON_CON_COTIZACIONInput, IFEXGetPARAM_MON_CON_COTIZACIONOutput, IFEXGetPARAM_CtzInput, IFEXGetPARAM_CtzOutput, IFEXGetPARAM_PtoVentaInput, IFEXGetPARAM_PtoVentaOutput, IFEXGetPARAM_OpcionalesInput, IFEXGetPARAM_OpcionalesOutput, IFEXGetPARAM_ActividadesInput, IFEXGetPARAM_ActividadesOutput, IFEXDummyOutput } from "../dto/fex"; export declare class WsfexService { private readonly repository; private readonly authorizeUseCase; private readonly getCmpUseCase; private readonly getLastCmpUseCase; private readonly getLastIdUseCase; private readonly checkPermisoUseCase; private readonly getParamCbteTipoUseCase; private readonly getParamTipoExpoUseCase; private readonly getParamIncotermsUseCase; private readonly getParamIdiomasUseCase; private readonly getParamUMedUseCase; private readonly getParamDstPaisUseCase; private readonly getParamDstCuitUseCase; private readonly getParamMonUseCase; private readonly getParamMonConCotizacionUseCase; private readonly getParamCtzUseCase; private readonly getParamPtoVentaUseCase; private readonly getParamOpcionalesUseCase; private readonly getParamActividadesUseCase; private readonly dummyUseCase; constructor(repository: IFexRepositoryPort); authorize(input: IFEXAuthorizeInput): Promise; getCmp(input: IFEXGetCMPInput): Promise; getLastCmp(input: IFEXGetLast_CMPInput): Promise; getLastId(input: IFEXGetLast_IDInput): Promise; checkPermiso(input: IFEXCheck_PermisoInput): Promise; getParamCbteTipo(input: IFEXGetPARAM_Cbte_TipoInput): Promise; getParamTipoExpo(input: IFEXGetPARAM_Tipo_ExpoInput): Promise; getParamIncoterms(input: IFEXGetPARAM_IncotermsInput): Promise; getParamIdiomas(input: IFEXGetPARAM_IdiomasInput): Promise; getParamUMed(input: IFEXGetPARAM_UMedInput): Promise; getParamDstPais(input: IFEXGetPARAM_DST_paisInput): Promise; getParamDstCuit(input: IFEXGetPARAM_DST_CUITInput): Promise; getParamMon(input: IFEXGetPARAM_MONInput): Promise; getParamMonConCotizacion(input: IFEXGetPARAM_MON_CON_COTIZACIONInput): Promise; getParamCtz(input: IFEXGetPARAM_CtzInput): Promise; getParamPtoVenta(input: IFEXGetPARAM_PtoVentaInput): Promise; getParamOpcionales(input: IFEXGetPARAM_OpcionalesInput): Promise; getParamActividades(input: IFEXGetPARAM_ActividadesInput): Promise; dummy(): Promise; }