/** * MCP tool: vf_run_lint * * Runs the linter via subprocess and returns structured diagnostics. * Reuses parseLintJsonOutput from the CLI lint command. */ import type { InferSchema } from "../../../src/extensions/schema/index.js"; import type { MCPTool } from "../tools.js"; import { type LintResult } from "../../commands/lint/command.js"; declare const getRunLintInput: () => import("../../../src/internal-agents/schema.js").Schema; }>>; type RunLintInput = InferSchema>; /** Spawn deno lint and return structured results. Exported for standalone reuse. */ export declare function executeLint(input?: { timeout?: number; }): Promise; export declare const vfRunLint: MCPTool; export {}; //# sourceMappingURL=run-lint-tool.d.ts.map