import { z } from 'zod'; import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { WebSocketManager } from '../connection.js'; import type { RemoveObjectInput } from '../types.js'; export declare const removeObjectSchema: z.ZodObject<{ identifier: z.ZodString; }, "strip", z.ZodTypeAny, { identifier: string; }, { identifier: string; }>; export type { RemoveObjectInput }; export declare const removeObjectTool: Tool; export declare function handleRemoveObject(args: RemoveObjectInput, connection: WebSocketManager): Promise<{ uuid: string; name: string; }>; //# sourceMappingURL=removeObject.d.ts.map