import { z } from 'zod'; declare const updateSections: { name: "update-sections"; description: string; parameters: { sections: z.ZodArray; description: z.ZodOptional, z.ZodString>>; }, z.core.$strip>>; }; outputSchema: { sections: z.ZodArray; }, z.core.$strip>>; totalCount: z.ZodNumber; updatedSectionIds: z.ZodArray; }; annotations: { readOnlyHint: false; destructiveHint: true; idempotentHint: false; }; execute({ sections }: { sections: { id: string; name?: string | undefined; description?: string | undefined; }[]; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { sections: { id: string; name: string; sectionOrder: number; description?: string | undefined; }[]; totalCount: number; updatedSectionIds: string[]; }; }>; }; export { updateSections }; //# sourceMappingURL=update-sections.d.ts.map