import { z } from 'zod'; declare const findCompletedTasks: { name: "find-completed-tasks"; description: string; parameters: { labels: z.ZodOptional>; labelsOperator: z.ZodOptional>; getBy: z.ZodDefault>; since: z.ZodOptional; until: z.ZodOptional; workspaceId: z.ZodOptional; projectId: z.ZodOptional; sectionId: z.ZodOptional; parentId: z.ZodOptional; responsibleUser: z.ZodOptional; limit: z.ZodDefault; cursor: z.ZodOptional; }; 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>>; nextCursor: z.ZodOptional; totalCount: z.ZodNumber; hasMore: z.ZodBoolean; appliedFilters: z.ZodRecord; }; annotations: { readOnlyHint: true; destructiveHint: false; idempotentHint: true; }; execute(args: { getBy: "due" | "completion"; limit: number; labels?: string[] | undefined; labelsOperator?: "and" | "or" | undefined; since?: string | undefined; until?: string | undefined; workspaceId?: string | undefined; projectId?: string | undefined; sectionId?: string | undefined; parentId?: string | undefined; responsibleUser?: string | undefined; cursor?: string | undefined; }, client: import('@doist/todoist-sdk').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; }[]; nextCursor: string | undefined; totalCount: number; hasMore: boolean; appliedFilters: { since: string; until: string; getBy: "due" | "completion"; limit: number; labels?: string[] | undefined; labelsOperator?: "and" | "or" | undefined; workspaceId?: string | undefined; projectId?: string | undefined; sectionId?: string | undefined; parentId?: string | undefined; responsibleUser?: string | undefined; cursor?: string | undefined; }; }; }>; }; export { findCompletedTasks }; //# sourceMappingURL=find-completed-tasks.d.ts.map