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