import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const getAttachmentTool: Tool; export declare function getAttachment(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const updateAttachmentTool: Tool; export declare function updateAttachment(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const deleteAttachmentTool: Tool; export declare function deleteAttachment(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=attachments.d.ts.map