import { IFexRepositoryPort } from "../../ports/fex/fex-repository.port"; import { IFEXGetPARAM_MON_CON_COTIZACIONInput, IFEXGetPARAM_MON_CON_COTIZACIONOutput } from "../../dto/fex"; export declare class GetParamMonConCotizacionUseCase { private readonly repository; constructor(repository: IFexRepositoryPort); execute(input: IFEXGetPARAM_MON_CON_COTIZACIONInput): Promise; }