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