/** * Tool: add_connection_to_project * Adds one or more connections to a project */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const AddConnectionToProjectInputSchema: z.ZodObject<{ project_uuid: z.ZodOptional; connection_uuids: z.ZodArray; wait_for_ready: z.ZodDefault>; max_wait_seconds: z.ZodDefault>; }, "strip", z.ZodTypeAny, { max_wait_seconds: number; connection_uuids: string[]; wait_for_ready: boolean; project_uuid?: string | undefined; }, { connection_uuids: string[]; project_uuid?: string | undefined; max_wait_seconds?: number | undefined; wait_for_ready?: boolean | undefined; }>; export type AddConnectionToProjectInput = z.infer; /** * Add connections to a project */ export declare function addConnectionToProject(services: ToolServices, args: unknown): Promise; export {};