import { AxiosResponse } from 'axios'; import { ComponentPackageBody, ComponentPackageMembersBody } from '../dto/componentPackageService.dto'; import { FetchDetailResponse, FetchListResponse, QueryParams } from '../types/fetchResponse.type'; import { ComponentLogList, ComponentPackage } from '../types/componentPackageService.type'; declare const ComponentPackageServices: { createComponentPackage: (data: ComponentPackageBody) => Promise; getComponentPackageList: (params?: QueryParams) => Promise>>; getComponentPackageDetail: (componentPackageId: string) => Promise>>; getComponentChangelog: () => Promise>>; editComponentPackage: (componentPackageId: string, data: ComponentPackageBody) => Promise; updateComponentPackageMember: (componentPackageId: string, data: ComponentPackageMembersBody) => Promise; deleteComponentPackage: (componentPackageId: string) => Promise; }; export default ComponentPackageServices;