/** * File Organizer MCP Server v3.4.2 * organize_by_content Tool * * @module tools/content-organization */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; import { FileScannerService } from "../services/file-scanner.service.js"; import { TopicExtractorService } from "../services/topic-extractor.service.js"; export declare const OrganizeByContentInputSchema: z.ZodObject<{ source_dir: z.ZodString; target_dir: z.ZodString; dry_run: z.ZodDefault>; create_shortcuts: z.ZodDefault>; recursive: z.ZodDefault>; response_format: z.ZodDefault>; }, z.core.$strip>; export type OrganizeByContentInput = z.infer; export declare const organizeByContentToolDefinition: ToolDefinition; export declare function handleOrganizeByContent(args: Record, services?: { scanner?: FileScannerService; topicExtractor?: TopicExtractorService; }): Promise; //# sourceMappingURL=content-organization.d.ts.map