import { z } from 'zod'; import { IZodHandlers, IZodSchemaToApiTypes } from '../utils/IZodApi'; export declare const ServicesSetupApiSchemas: { 'Services.getSetup': { args: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; result: 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; }>; }; }; export type IServicesSetupApiTypes = IZodSchemaToApiTypes; export type IServicesSetupApis = IZodHandlers; export default IServicesSetupApiTypes;