/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { z } from "zod/v4"; export declare const ServerConfigSchema: z.ZodObject<{ id: z.ZodOptional; url: z.ZodURL; headers: z.ZodOptional>; authToken: z.ZodOptional; parameters: z.ZodOptional>; }, z.core.$strip>; export type ServerConfig = z.output; export declare const ServiceConfigSchema: z.ZodObject<{ id: z.ZodOptional; url: z.ZodURL; headers: z.ZodOptional>; authToken: z.ZodOptional; parameters: z.ZodOptional>; type: z.ZodEnum<{ mcp: "mcp"; a2a: "a2a"; }>; }, z.core.$strip>; export type ServiceConfig = z.output; /** * @deprecated use ServiceConfigSchema instead */ export declare const ServerSchema: z.ZodObject<{ id: z.ZodOptional; url: z.ZodURL; headers: z.ZodOptional>; authToken: z.ZodOptional; parameters: z.ZodOptional>; type: z.ZodEnum<{ mcp: "mcp"; a2a: "a2a"; }>; }, z.core.$strip>; /** * @deprecated use ServiceConfig instead */ export type Server = z.output; //# sourceMappingURL=server.d.ts.map