/** * Consolidated Rest Management Tool * * Replaces 2 individual rest tools with a single action-based tool: * - take_long_rest -> action: 'long' * - take_short_rest -> action: 'short' */ import { z } from 'zod'; import { SessionContext } from '../types.js'; import { McpResponse } from '../../utils/action-router.js'; export declare const RestManageTool: { name: string; description: string; inputSchema: z.ZodObject<{ action: z.ZodString; characterId: z.ZodString; hitDiceToSpend: z.ZodOptional; }, "strip", z.ZodTypeAny, { characterId: string; action: string; hitDiceToSpend?: number | undefined; }, { characterId: string; action: string; hitDiceToSpend?: number | undefined; }>; }; export declare function handleRestManage(args: unknown, _ctx: SessionContext): Promise; //# sourceMappingURL=rest-manage.d.ts.map