import { z } from "zod"; import { TaskService } from "../../core/task-service.js"; import type { CreateTaskInput } from "../../types.js"; import type { McpToolResponse } from "./response.js"; export declare const CreateTaskArgsSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodString; parent_id: z.ZodOptional; priority: z.ZodOptional; blocked_by: z.ZodOptional>; }, "strip", z.ZodTypeAny, { name: string; description: string; parent_id?: string | undefined; priority?: number | undefined; blocked_by?: string[] | undefined; }, { name: string; description: string; parent_id?: string | undefined; priority?: number | undefined; blocked_by?: string[] | undefined; }>; export declare function handleCreateTask(args: CreateTaskInput, service: TaskService): Promise; //# sourceMappingURL=create-task.d.ts.map