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