/** * Tool: list_connections * Lists all configured connections in the NeuBird deployment */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const ListConnectionsInputSchema: z.ZodObject<{ include_inactive: z.ZodDefault>; }, "strip", z.ZodTypeAny, { include_inactive: boolean; }, { include_inactive?: boolean | undefined; }>; export type ListConnectionsInput = z.infer; /** * List connections with optional filtering */ export declare function listConnections(services: ToolServices, args: unknown): Promise; export {};