import { AxiosResponse } from 'axios'; import { FetchDetailResponse } from '../types/fetchResponse.type'; import { EditTaskLinkDTO } from '../dto/taskService.dto'; import { TaskLinkChangelogItem, TaskLinkType } from '../types/taskService.type'; declare const TaskLinkServices: { getTaskLink: (taskId: string, type: TaskLinkType) => Promise; putTaskLink: (taskId: string, data: EditTaskLinkDTO) => Promise; getTaskLinkChangelog: (taskId: string, type: TaskLinkType) => Promise>>; }; export default TaskLinkServices;