import { z } from 'zod'; export declare const ServicesSetupSchema: z.ZodObject<{ datastoreRegistryHost: z.ZodOptional; storageEngineHost: z.ZodOptional; statsTrackerHost: z.ZodOptional; nodeRegistryHost: z.ZodOptional; replayRegistryHost: z.ZodOptional; }, "strip", z.ZodTypeAny, { storageEngineHost?: string | undefined; datastoreRegistryHost?: string | undefined; statsTrackerHost?: string | undefined; nodeRegistryHost?: string | undefined; replayRegistryHost?: string | undefined; }, { storageEngineHost?: string | undefined; datastoreRegistryHost?: string | undefined; statsTrackerHost?: string | undefined; nodeRegistryHost?: string | undefined; replayRegistryHost?: string | undefined; }>; type IServicesSetup = z.infer; export default IServicesSetup;