import { z } from 'zod'; declare const reorderObjects: { name: "reorder-objects"; description: string; parameters: { type: z.ZodEnum<{ project: "project"; section: "section"; }>; items: z.ZodArray; parentId: z.ZodOptional; }, z.core.$strip>>; }; outputSchema: { type: z.ZodEnum<{ project: "project"; section: "section"; }>; movedCount: z.ZodNumber; reorderedCount: z.ZodNumber; affectedIds: z.ZodArray; success: z.ZodBoolean; }; annotations: { readOnlyHint: false; destructiveHint: false; idempotentHint: true; }; execute(args: { type: "project" | "section"; items: { id: string; order?: number | undefined; parentId?: string | undefined; }[]; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { type: "project" | "section"; movedCount: number; reorderedCount: number; affectedIds: string[]; success: true; }; }>; }; export { reorderObjects }; //# sourceMappingURL=reorder-objects.d.ts.map