import { z } from 'zod'; export declare const createMediaSchema: z.ZodObject<{ url: z.ZodString; filename: z.ZodString; fileSize: z.ZodNumber; mimeType: z.ZodString; width: z.ZodOptional>; height: z.ZodOptional>; title: z.ZodOptional>; alt: z.ZodOptional>; caption: z.ZodOptional>; }, z.core.$strip>; export declare const updateMediaSchema: z.ZodObject<{ title: z.ZodOptional>; alt: z.ZodOptional>; caption: z.ZodOptional>; }, z.core.$strip>; export declare const mediaListQuerySchema: z.ZodObject<{ limit: z.ZodDefault>>; offset: z.ZodDefault>>; orderBy: z.ZodDefault>>; orderDir: z.ZodDefault>>; type: z.ZodDefault>>; search: z.ZodOptional; tagIds: z.ZodOptional>>; tagSlugs: z.ZodOptional>>; }, z.core.$strip>; //# sourceMappingURL=schemas.d.ts.map