import { AxiosResponse } from 'axios'; import { QueryParams } from '../types/fetchResponse.type'; import { ReleaseNoteBody, ReleaseNoteDetail, ReleaseNoteOptionResponse, ReleaseNoteResponse, ReleaseNoteUpdateBody } from '../dto/projectReleaseNoteService.dto'; declare const ProjectReleaseNoteServices: { getReleaseNotes: (projectId: string, params?: QueryParams) => Promise>; getReleaseNotesOption: (projectId: string) => Promise>; getReleaseNoteById: (projectId: string, releaseNoteId: string) => Promise>; postReleaseNotes: (projectId: string, body: ReleaseNoteBody) => Promise>; putReleaseNote: (projectId: string, releaseNoteId: string, body: ReleaseNoteUpdateBody) => Promise>; deleteReleaseNote: (projectId: string, releaseNoteId: string) => Promise; }; export default ProjectReleaseNoteServices;