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