import { z } from 'zod'; export declare const shareFolderFormSchema: z.ZodObject<{ folderDescription: z.ZodString; }, "strip", z.ZodTypeAny, { folderDescription: string; }, { folderDescription: string; }>; export type ShareFolderFormSchema = z.infer; export declare const createFolderFormSchema: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; export type CreateFolderFormSchema = z.infer; export declare const uploadVRFilesFormSchema: z.ZodObject<{ files: z.ZodArray; }, "strip", z.ZodTypeAny, { files: any[]; }, { files: any[]; }>; export type UploadVRFilesFormSchema = z.infer; export declare const saveWebpageToVectorFsFormSchema: z.ZodObject<{ files: z.ZodArray; destinationFolderPath: z.ZodString; }, "strip", z.ZodTypeAny, { files: any[]; destinationFolderPath: string; }, { files: any[]; destinationFolderPath: string; }>; export type SaveWebpageToVectorFsFormSchema = z.infer; export declare const createTextFileFormSchema: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; export type CreateTextFileFormSchema = z.infer;