import type { PostgresClient } from '../client/postgres-client.js'; export declare const connectionToolDefinitions: ({ name: string; description: string; inputSchema: { type: "object"; properties: { profile: { type: string; description: string; }; database: { type: string; description: string; }; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { profile?: undefined; database?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { profile: { type: string; description: string; }; database: { type: string; description: string; }; }; required: string[]; }; })[]; export declare function handleConnectionTool(name: string, args: Record, client: PostgresClient): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=connection.d.ts.map