import { z } from 'zod'; export declare const uploadConfigSchema: z.ZodObject<{ server: z.ZodURL; apiKey: z.ZodString; organization: z.ZodString; project: z.ZodString; timeout: z.ZodOptional; }, z.core.$strip>; export type UploadConfig = z.infer;