import { z } from 'zod'; export declare const FileSchema: z.ZodObject<{ id: z.ZodString; title: z.ZodOptional>; folder: z.ZodOptional>; description: z.ZodOptional>; location: z.ZodOptional>; tags: z.ZodOptional>; focal_point_x: z.ZodOptional>; focal_point_y: z.ZodOptional>; filename_download: z.ZodOptional>; }, {}>; export type FileSchemaType = z.infer;