import { z } from 'zod'; import { Tool } from '../../core/types.js'; import { AgentState } from './AgentTracker.js'; export declare const agentStates: Map; declare const parameterSchema: z.ZodObject<{ description: z.ZodString; goal: z.ZodString; projectContext: z.ZodString; workingDirectory: z.ZodOptional; relevantFilesDirectories: z.ZodOptional; userPrompt: z.ZodOptional; }, "strip", z.ZodTypeAny, { description: string; goal: string; projectContext: string; workingDirectory?: string | undefined; userPrompt?: boolean | undefined; relevantFilesDirectories?: string | undefined; }, { description: string; goal: string; projectContext: string; workingDirectory?: string | undefined; userPrompt?: boolean | undefined; relevantFilesDirectories?: string | undefined; }>; declare const returnSchema: z.ZodObject<{ instanceId: z.ZodString; status: z.ZodString; }, "strip", z.ZodTypeAny, { status: string; instanceId: string; }, { status: string; instanceId: string; }>; type Parameters = z.infer; type ReturnType = z.infer; export declare const agentStartTool: Tool; export {}; //# sourceMappingURL=agentStart.d.ts.map