import { ConnectionConfig, QueryResult } from '../types/index.js'; export declare class SqlClient { private config; private connected; constructor(url: string); /** * Test connection to the Supabase Lite instance */ connect(): Promise; /** * Execute a SQL query */ executeQuery(sql: string): Promise; /** * Test if the connection is still active */ ping(): Promise; /** * Get connection information */ getConnectionInfo(): ConnectionConfig; /** * Check if connected */ isConnected(): boolean; /** * Close the connection (cleanup) */ disconnect(): void; } //# sourceMappingURL=sql-client.d.ts.map