/** * Consolidated Item Management Tool * Replaces 6 separate tools: create_item_template, get_item, list_items, search_items, update_item, delete_item */ import { z } from 'zod'; import { McpResponse } from '../../utils/action-router.js'; import { SessionContext } from '../types.js'; export declare const ItemManageTool: { name: string; description: string; inputSchema: z.ZodObject<{ action: z.ZodString; itemId: z.ZodOptional; name: z.ZodOptional; type: z.ZodOptional>; description: z.ZodOptional; weight: z.ZodOptional; value: z.ZodOptional; properties: z.ZodOptional>; minValue: z.ZodOptional; maxValue: z.ZodOptional; }, "strip", z.ZodTypeAny, { action: string; type?: "quest" | "scroll" | "weapon" | "armor" | "consumable" | "misc" | undefined; value?: number | undefined; itemId?: string | undefined; name?: string | undefined; description?: string | undefined; weight?: number | undefined; properties?: Record | undefined; minValue?: number | undefined; maxValue?: number | undefined; }, { action: string; type?: "quest" | "scroll" | "weapon" | "armor" | "consumable" | "misc" | undefined; value?: number | undefined; itemId?: string | undefined; name?: string | undefined; description?: string | undefined; weight?: number | undefined; properties?: Record | undefined; minValue?: number | undefined; maxValue?: number | undefined; }>; }; export declare function handleItemManage(args: unknown, _ctx: SessionContext): Promise; //# sourceMappingURL=item-manage.d.ts.map