/** * Job status tools */ import { z } from "zod"; import type { McpToolDefinition, ToolContext, ToolResult } from "../types.js"; declare const getJobStatusInputSchema: z.ZodObject<{ id: z.ZodString; type: z.ZodOptional>; }, "strip", z.ZodTypeAny, { id: string; type?: "research" | "content" | "audit" | "brief" | "optimization" | "atomization" | undefined; }, { id: string; type?: "research" | "content" | "audit" | "brief" | "optimization" | "atomization" | undefined; }>; export type GetJobStatusInput = z.infer; export declare const getJobStatusTool: McpToolDefinition; export declare function executeGetJobStatus(input: unknown, context: ToolContext): Promise; export declare const jobTools: McpToolDefinition[]; export declare const jobExecutors: Record Promise>; export {}; //# sourceMappingURL=jobs.d.ts.map