/** * Tool: switch_instance * Switches the NeuBird API base URL to connect to a different instance */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const SwitchInstanceInputSchema: z.ZodObject<{ base_url: z.ZodString; }, "strip", z.ZodTypeAny, { base_url: string; }, { base_url: string; }>; export type SwitchInstanceInput = z.infer; /** * Switch to a different NeuBird instance */ export declare function switchInstance(services: ToolServices, args: unknown): Promise; export {};