/** * File Organizer MCP Server v3.4.2 * file-management Tool (Get Categories / Set Rules) * * @module tools/file-management */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; export declare const GetCategoriesInputSchema: z.ZodObject<{ response_format: z.ZodDefault>; }, z.core.$strip>; export declare const getCategoriesToolDefinition: ToolDefinition; export declare const SetCustomRulesInputSchema: z.ZodObject<{ rules: z.ZodArray>; filename_pattern: z.ZodOptional; priority: z.ZodDefault; }, z.core.$strip>>; }, z.core.$strip>; export declare const setCustomRulesToolDefinition: ToolDefinition; export declare function handleGetCategories(args: Record): Promise; export declare function handleSetCustomRules(args: Record): Promise; //# sourceMappingURL=file-management.d.ts.map