import { z } from 'zod'; declare const updateProjects: { name: "update-projects"; description: string; parameters: { projects: z.ZodArray; isFavorite: z.ZodOptional; viewStyle: z.ZodOptional>; description: z.ZodOptional, z.ZodString>>; color: z.ZodPipe, z.ZodOptional>>; }, z.core.$strip>>; }; outputSchema: { projects: z.ZodArray>>; isFavorite: z.ZodBoolean; isShared: z.ZodBoolean; parentId: z.ZodOptional; inboxProject: z.ZodBoolean; viewStyle: z.ZodString; workspaceId: z.ZodOptional; folderId: z.ZodOptional; childOrder: z.ZodNumber; isArchived: z.ZodBoolean; }, z.core.$strip>>; totalCount: z.ZodNumber; updatedProjectIds: z.ZodArray; failures: z.ZodArray; }, z.core.$strip>>; appliedOperations: z.ZodObject<{ updateCount: z.ZodNumber; skippedCount: z.ZodNumber; failureCount: z.ZodNumber; }, z.core.$strip>; }; annotations: { readOnlyHint: false; destructiveHint: true; idempotentHint: false; }; execute(args: { projects: { id: string; name?: string | undefined; isFavorite?: boolean | undefined; viewStyle?: "list" | "board" | "calendar" | undefined; description?: string | undefined; color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined; }[]; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { projects: { id: string; name: string; description: string; color: import('@doist/todoist-sdk').ColorKey; isFavorite: boolean; isShared: boolean; parentId: string | undefined; inboxProject: boolean; viewStyle: string; workspaceId: string | undefined; folderId: string | undefined; childOrder: number; isArchived: boolean; }[]; totalCount: number; updatedProjectIds: string[]; failures: { item: string; error: string; }[]; appliedOperations: { updateCount: number; skippedCount: number; failureCount: number; }; }; }>; }; export { updateProjects }; //# sourceMappingURL=update-projects.d.ts.map