/** * Build tool definition for MCP */ export declare const buildTool: { name: string; description: string; inputSchema: { type: "object"; properties: { path: { type: string; description: string; }; output: { type: string; description: string; }; format: { type: string; enum: string[]; description: string; }; }; required: string[]; }; }; /** * Handle build tool invocation */ export declare function handleBuild(params: Record): Promise; //# sourceMappingURL=build.d.ts.map