import type { DaemonInstallOptions } from './types.js'; /** * Ensures ClickHouse binary is installed and returns the path to it. * Downloads using the official installer if not present. * * @param options - Installation options * @returns Path to the ClickHouse binary */ export declare function ensureBinary(options?: DaemonInstallOptions): Promise; /** * Gets the installation directory paths for ClickHouse daemon */ export declare function getInstallPaths(options?: DaemonInstallOptions): { binaryPath: string; binDir: string; dataDir: string; installDir: string; logDir: string; }; //# sourceMappingURL=install.d.ts.map