import { TodoistApi } from '@doist/todoist-sdk'; import { z } from 'zod'; declare const MAX_TASKS_PER_OPERATION: 25; declare const addTasks: { name: "add-tasks"; description: string; parameters: { tasks: z.ZodArray>>; priority: z.ZodOptional>; dueString: z.ZodOptional>>; deadlineDate: z.ZodOptional>>; duration: z.ZodOptional>>; labels: z.ZodOptional>; projectId: z.ZodOptional>>; sectionId: z.ZodOptional>>; parentId: z.ZodOptional>>; order: z.ZodOptional; responsibleUser: z.ZodOptional>>; isUncompletable: z.ZodOptional; }, z.core.$strip>>; }; outputSchema: { tasks: z.ZodArray; recurring: z.ZodUnion; deadlineDate: z.ZodOptional; priority: z.ZodEnum<{ p1: "p1"; p2: "p2"; p3: "p3"; p4: "p4"; }>; projectId: z.ZodString; sectionId: z.ZodOptional; parentId: z.ZodOptional; labels: z.ZodOptional>; duration: z.ZodOptional; responsibleUid: z.ZodOptional; isUncompletable: z.ZodOptional; assignedByUid: z.ZodOptional; isDeleted: z.ZodOptional; checked: z.ZodBoolean; completedAt: z.ZodOptional; addedAt: z.ZodOptional; }, z.core.$strip>>; totalCount: z.ZodNumber; failures: z.ZodArray; }, z.core.$strip>>; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; }; annotations: { readOnlyHint: false; destructiveHint: false; idempotentHint: false; }; execute(args: { tasks: { content: string; description?: string | undefined; priority?: "p1" | "p2" | "p3" | "p4" | undefined; dueString?: string | undefined; deadlineDate?: string | undefined; duration?: string | undefined; labels?: string[] | undefined; projectId?: string | undefined; sectionId?: string | undefined; parentId?: string | undefined; order?: number | undefined; responsibleUser?: string | undefined; isUncompletable?: boolean | undefined; }[]; }, client: TodoistApi): Promise<{ textContent: string; structuredContent: { tasks: { id: string; content: string; description: string; dueDate: string | undefined; recurring: string | boolean; deadlineDate: string | undefined; priority: "p1" | "p2" | "p3" | "p4"; projectId: string; sectionId: string | undefined; parentId: string | undefined; labels: string[]; duration: string | undefined; responsibleUid: string | undefined; assignedByUid: string | undefined; isDeleted: true | undefined; checked: boolean; completedAt: string | undefined; addedAt: string | undefined; }[]; totalCount: number; failures: { item: string; error: string; }[]; totalRequested: number; successCount: number; failureCount: number; }; }>; }; export { addTasks, MAX_TASKS_PER_OPERATION }; //# sourceMappingURL=add-tasks.d.ts.map