export declare const buildProjectTool: { name: string; description: string; inputSchema: { type: "object"; properties: { project_path: { type: string; description: string; }; command: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeBuildProject(args: { project_path: string; command?: string; }): Promise; //# sourceMappingURL=buildProject.d.ts.map