export declare const lintCheckTool: { name: string; description: string; inputSchema: { type: "object"; properties: { project_path: { type: string; description: string; }; fix: { type: string; description: string; }; files: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeLintCheck(args: { project_path: string; fix?: boolean; files?: string; }): Promise; //# sourceMappingURL=lintCheck.d.ts.map