/** * Tool: remove_connection_from_project * Removes one or more connections from a project */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const RemoveConnectionFromProjectInputSchema: z.ZodEffects; confirm: z.ZodOptional; }, "strip", z.ZodTypeAny, { project_uuid: string; connection_uuids: string[]; confirm?: boolean | undefined; }, { project_uuid: string; connection_uuids: string[]; confirm?: boolean | undefined; }>, { project_uuid: string; connection_uuids: string[]; confirm?: boolean | undefined; }, { project_uuid: string; connection_uuids: string[]; confirm?: boolean | undefined; }>; export type RemoveConnectionFromProjectInput = z.infer; /** * Remove connections from a project */ export declare function removeConnectionFromProject(services: ToolServices, args: unknown): Promise; export {};