/** * File Organizer MCP Server v3.4.2 * Common Validation Schemas */ import { z } from "zod"; /** * Pagination schema for list operations */ export declare const PaginationSchema: z.ZodObject<{ limit: z.ZodDefault; offset: z.ZodDefault; }, z.core.$strip>; /** * Common parameters for all tools */ export declare const CommonParamsSchema: z.ZodObject<{ response_format: z.ZodDefault>; }, z.core.$strip>; export type PaginationInput = z.infer; export type CommonParams = z.infer; //# sourceMappingURL=common.schemas.d.ts.map