import { z } from 'zod'; declare const completeTasks: { name: "complete-tasks"; description: string; parameters: { ids: z.ZodArray; }; outputSchema: { completed: z.ZodArray; failures: z.ZodArray; }, z.core.$strip>>; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; }; annotations: { readOnlyHint: false; destructiveHint: true; idempotentHint: false; }; execute(args: { ids: string[]; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { completed: string[]; failures: { item: string; error: string; code?: string; }[]; totalRequested: number; successCount: number; failureCount: number; }; }>; }; export { completeTasks }; //# sourceMappingURL=complete-tasks.d.ts.map