/** * File Organizer MCP Server v3.4.2 * Rollback Tool * * @module tools/rollback */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; export declare const UndoLastOperationInputSchema: z.ZodObject<{ manifest_id: z.ZodOptional; response_format: z.ZodDefault>; }, z.core.$strip>; export declare const undoLastOperationToolDefinition: ToolDefinition; export declare function handleUndoLastOperation(args: Record): Promise; //# sourceMappingURL=rollback.d.ts.map