/** * Tool: delete_project_instruction * Deletes a project instruction */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const DeleteInstructionInputSchema: z.ZodObject<{ instruction_uuid: z.ZodString; }, "strip", z.ZodTypeAny, { instruction_uuid: string; }, { instruction_uuid: string; }>; export type DeleteInstructionInput = z.infer; /** * Delete instruction */ export declare function deleteProjectInstruction(services: ToolServices, args: unknown): Promise; export {};