/** * Lint tool definition for MCP */ export declare const lintTool: { name: string; description: string; inputSchema: { type: "object"; properties: { path: { type: string; description: string; }; fix: { type: string; description: string; }; }; required: string[]; }; }; /** * Handle lint tool invocation */ export declare function handleLint(params: Record): Promise; //# sourceMappingURL=lint.d.ts.map