import { AxiosResponse } from 'axios'; import { FetchDetailResponse } from '../types/fetchResponse.type'; import { PrdModule, PrdContent } from '../types/projectPrdService.type'; import { CreatePrdModuleBody, CreatePrdSubModuleBody, EditPrdContentBody } from '../dto/projectPrdService.dto'; declare const ProjectPrdServices: { createModule: (projectId: string, body: CreatePrdModuleBody) => Promise; getModules: (projectId: string) => Promise>>; deleteModule: (projectId: string, moduleId: string) => Promise; createSubModule: (projectId: string, body: CreatePrdSubModuleBody) => Promise; deleteSubModule: (projectId: string, subModuleId: string) => Promise; getContent: (projectId: string, subModuleId: string) => Promise>>; editContent: (projectId: string, subModuleId: string, body: EditPrdContentBody) => Promise; }; export default ProjectPrdServices;