import type { AuthContext } from '../types.js'; export declare const deleteFileTool: { name: string; description: string; inputSchema: { type: string; properties: { fileId: { type: string; description: string; }; }; required: string[]; }; }; export declare function deleteFile(_auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=delete-file.d.ts.map