import { AxiosResponse } from 'axios'; import { GetHistoryParams, GetPushParams, HistoryOptionsResponse, HistoryResponse, StagingResponseData, SubModulePutDataBody, SubModuleResponse } from '../dto/projectPushRepositoryService.dto'; import { FetchListResponse } from '../types/fetchResponse.type'; declare const ProjectPushRepositoryServices: { getSubModules: (projectId?: string, params?: GetPushParams) => Promise>>; getSubModuleOptions: (projectId: string) => Promise; getHistory: (projectId: string, staging: string, params?: GetHistoryParams) => Promise>>; getHistoryOptions: (projectId: string, stage: string) => Promise>; putStaging: (params: string, body: SubModulePutDataBody) => Promise>; }; export default ProjectPushRepositoryServices;