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