import { z } from 'zod'; declare const exportProjectTemplate: { name: "export-project-template"; description: string; parameters: { projectId: z.ZodString; format: z.ZodDefault>; useRelativeDates: z.ZodOptional; }; outputSchema: { format: z.ZodEnum<{ file: "file"; url: "url"; }>; content: z.ZodOptional; lineCount: z.ZodOptional; fileName: z.ZodOptional; fileUrl: z.ZodOptional; }; annotations: { readOnlyHint: true; destructiveHint: false; idempotentHint: true; }; execute({ projectId, format, useRelativeDates }: { projectId: string; format: "file" | "url"; useRelativeDates?: boolean | undefined; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { format: "url"; fileName: string; fileUrl: string; content?: undefined; lineCount?: undefined; }; } | { textContent: string; structuredContent: { format: "file"; content: string; lineCount: number; fileName?: undefined; fileUrl?: undefined; }; }>; }; export { exportProjectTemplate }; //# sourceMappingURL=export-project-template.d.ts.map