import type { AuthContext } from '../types.js'; export declare const listFilesTool: { name: string; description: string; inputSchema: { type: string; properties: { projectId: { type: string; description: string; }; folderId: { type: string[]; description: string; }; status: { type: string; enum: string[]; description: string; }; limit: { type: string; description: string; }; }; required: string[]; }; }; export declare function listFiles(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=list-files.d.ts.map