import { ApiMethodDeclaration } from '..'; type ParamsData = { startDate: string; endDate: string; }; type ResponseData = Array<{ date: string; workingHours: number; totalRequests: number; }>; export declare const getActivityStats: ApiMethodDeclaration; export {};