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