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