/** * File Organizer MCP Server v3.4.2 * smart_suggest Tool * * Analyze directory health and get actionable suggestions for organization * * @module tools/smart-suggest */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; export declare const SmartSuggestInputSchema: z.ZodObject<{ directory: z.ZodString; include_subdirs: z.ZodDefault>; include_duplicates: z.ZodDefault>; max_files: z.ZodDefault>; timeout_seconds: z.ZodDefault>; sample_rate: z.ZodDefault>; use_cache: z.ZodDefault>; response_format: z.ZodDefault>; }, z.core.$strip>; export type SmartSuggestInput = z.infer; export declare const smartSuggestToolDefinition: ToolDefinition; export declare function handleSmartSuggest(args: Record): Promise; //# sourceMappingURL=smart-suggest.d.ts.map