/** * Tool: get_connection_info * Gets detailed information about a specific connection */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetConnectionInfoInputSchema: z.ZodObject<{ connection_uuid: z.ZodString; }, "strip", z.ZodTypeAny, { connection_uuid: string; }, { connection_uuid: string; }>; export type GetConnectionInfoInput = z.infer; /** * Get detailed connection information */ export declare function getConnectionInfo(services: ToolServices, args: unknown): Promise; export {};