import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const dispatchAgentJobTool: Tool; export declare function dispatchAgentJob(auth: AuthContext, args: { workspaceId?: string; intent: string; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const listAgentJobsTool: Tool; export declare function listAgentJobs(auth: AuthContext, args: { workspaceId?: string; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; export declare const getAgentJobTool: Tool; export declare function getAgentJob(auth: AuthContext, args: { workspaceId?: string; jobId: string; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=agent-runner.d.ts.map