/** * File Organizer MCP Server v3.4.2 * organize_photos Tool * * @module tools/photo-organization */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; export declare const OrganizePhotosInputSchema: z.ZodObject<{ source_dir: z.ZodString; target_dir: z.ZodString; date_format: z.ZodDefault>>; group_by_camera: z.ZodDefault>; dry_run: z.ZodDefault>; copy_instead_of_move: z.ZodDefault>; strip_gps: z.ZodDefault>; unknown_date_folder: z.ZodDefault>; response_format: z.ZodDefault>; }, z.core.$strip>; export type OrganizePhotosInput = z.infer; export declare const organizePhotosToolDefinition: ToolDefinition; export declare function handleOrganizePhotos(args: Record): Promise; //# sourceMappingURL=photo-organization.d.ts.map