import { z } from 'zod'; declare const findTasks: { name: "find-tasks"; description: string; parameters: { labels: z.ZodOptional>; labelsOperator: z.ZodOptional>; searchText: z.ZodOptional; projectId: z.ZodOptional; sectionId: z.ZodOptional; parentId: z.ZodOptional; responsibleUser: z.ZodOptional; responsibleUserFiltering: z.ZodOptional>; limit: z.ZodDefault; cursor: z.ZodOptional; filter: z.ZodOptional; filterIdOrName: 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: { limit: number; labels?: string[] | undefined; labelsOperator?: "and" | "or" | undefined; searchText?: string | undefined; projectId?: string | undefined; sectionId?: string | undefined; parentId?: string | undefined; responsibleUser?: string | undefined; responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined; cursor?: string | undefined; filter?: string | undefined; filterIdOrName?: 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: { limit: number; labels?: string[] | undefined; labelsOperator?: "and" | "or" | undefined; searchText?: string | undefined; projectId?: string | undefined; sectionId?: string | undefined; parentId?: string | undefined; responsibleUser?: string | undefined; responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined; cursor?: string | undefined; filter?: string | undefined; filterIdOrName?: string | undefined; }; }; }>; }; export { findTasks }; //# sourceMappingURL=find-tasks.d.ts.map