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