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