import { z } from 'zod'; export declare const CloudSettingsSchema: z.ZodObject<{ datastoreRegistryEndpoint: z.ZodOptional; storageEngineEndpoint: z.ZodOptional; statsEndpoint: z.ZodOptional; nodeRegistryEndpoint: z.ZodOptional; dhtServices: z.ZodOptional>; }, "strip", z.ZodTypeAny, { datastoreRegistryEndpoint?: string | undefined; storageEngineEndpoint?: string | undefined; statsEndpoint?: string | undefined; nodeRegistryEndpoint?: string | undefined; dhtServices?: { datastoreRegistry?: any; nodeRegistry?: any; } | undefined; }, { datastoreRegistryEndpoint?: string | undefined; storageEngineEndpoint?: string | undefined; statsEndpoint?: string | undefined; nodeRegistryEndpoint?: string | undefined; dhtServices?: { datastoreRegistry?: any; nodeRegistry?: any; } | undefined; }>; type ICloudSettings = z.infer; export default ICloudSettings;