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