import { z } from 'zod'; import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { WebSocketManager } from '../connection.js'; import type { RemoveInjectionInput } from '../types.js'; export declare const removeInjectionSchema: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; export type { RemoveInjectionInput }; export declare const removeInjectionTool: Tool; export declare function handleRemoveInjection(args: RemoveInjectionInput, connection: WebSocketManager): Promise<{ success: boolean; name: string; }>; //# sourceMappingURL=removeInjection.d.ts.map