import type { AuthContext } from '../types.js'; export declare const createFileTool: { name: string; description: string; inputSchema: { type: string; properties: { projectId: { type: string; description: string; }; title: { type: string; description: string; }; path: { type: string; description: string; }; content: { type: string; description: string; }; fileType: { type: string; enum: string[]; description: string; }; metadata: { type: string; description: string; properties: { meetingDate: { type: string; description: string; }; sourcePlatform: { type: string; description: string; }; participants: { type: string; items: { type: string; }; description: string; }; }; }; folderId: { type: string; description: string; }; conceptType: { type: string; description: string; }; description: { type: string; description: string; }; tags: { type: string; items: { type: string; }; description: string; }; }; required: string[]; }; }; export declare function createFile(_auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=create-file.d.ts.map