import { AxiosResponse } from 'axios'; import { FetchListResponse, QueryParams } from '../types/fetchResponse.type'; import { StatisticDataResponse, StatisticOptions } from '../dto/projectStatisticService.dto'; declare const ProjectStatisticServices: { getStatistics: (projectId: string, params?: QueryParams) => Promise>>; getStatisticOptions: (projectId: string) => Promise>; getStatisticDetail: (projectId: string, memberId: string, team: string) => Promise; }; export default ProjectStatisticServices;