import { AxiosResponse } from 'axios'; import { UpdateTaskDependencyDTO } from '../dto/taskService.dto'; declare const TaskDependencyServices: { getTaskDependencies: (taskId: string) => Promise; updateTaskDependencies: (taskId: string, body: UpdateTaskDependencyDTO) => Promise; getChildTasks: (taskId: string) => Promise; getChildrenTasks: (taskId: string) => Promise; }; export default TaskDependencyServices;