import type { ClickHouseClient } from '@clickhouse/client'; import type { DaemonClientOptions } from './types.js'; export type { ClickHouseClient }; /** * Creates a native Node.js ClickHouse client */ export declare function createClickHouseClient(options: { database?: string; password?: string; port?: number; url?: string; username?: string; }): ClickHouseClient; /** * Connects to ClickHouse daemon, auto-downloading binary and starting server if needed. * * @param options - Configuration options * @returns Connected ClickHouse client */ export declare function connect(options?: DaemonClientOptions): Promise; //# sourceMappingURL=client.d.ts.map