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