import { ContentBlock } from '@modelcontextprotocol/server'; import { z } from 'zod'; declare const viewAttachment: { name: "view-attachment"; description: string; parameters: { fileUrl: z.ZodURL; }; annotations: { readOnlyHint: true; destructiveHint: false; idempotentHint: true; }; execute({ fileUrl }: { fileUrl: string; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; contentItems?: undefined; } | { textContent: string; contentItems: ContentBlock[]; }>; }; export { viewAttachment }; //# sourceMappingURL=view-attachment.d.ts.map