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