import { TextContentResponse } from '../../types.js'; import { Tool } from '../../Tool.js'; import { McpServer, RegisteredTool } from '@modelcontextprotocol/sdk/server/mcp.js'; import { McpLogger } from '../../utils/logger.js'; import { z } from 'zod'; declare const inputSchemaZodObject: z.ZodObject<{ absoluteProjectPath: z.ZodString; absoluteCurrentWorkingDirectory: z.ZodString; buildId: z.ZodOptional; limit: z.ZodOptional; }, z.core.$strip>; export type GetBuildStatusInputSchema = z.infer; export declare class GetBuildStatusTool extends Tool { constructor(mcpServer: McpServer, logger: McpLogger); handler({ absoluteProjectPath, absoluteCurrentWorkingDirectory, buildId, limit, }: GetBuildStatusInputSchema): Promise; register(): RegisteredTool; } export {};