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