import { z } from 'zod'; declare const getProjectActivityStats: { name: "get-project-activity-stats"; description: string; parameters: { projectId: z.ZodString; weeks: z.ZodOptional; includeWeeklyCounts: z.ZodOptional; }; outputSchema: { projectId: z.ZodString; dayItems: z.ZodArray>; weekItems: z.ZodOptional>>; }; annotations: { readOnlyHint: true; destructiveHint: false; idempotentHint: true; }; execute(args: { projectId: string; weeks?: number | undefined; includeWeeklyCounts?: boolean | undefined; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { projectId: string; dayItems: { date: string; totalCount: number; }[]; weekItems: { fromDate: string; toDate: string; totalCount: number; }[] | undefined; }; }>; }; export { getProjectActivityStats }; //# sourceMappingURL=get-project-activity-stats.d.ts.map