import type { DatabricksRawProtocolClient } from "./raw-protocol-client.js"; export interface DatabricksSqlWarehouse { id: string; name?: string; state?: string; } /** Discover SQL warehouses through the reviewed SDK-gap protocol. */ export declare function listDatabricksSqlWarehouses(client: DatabricksRawProtocolClient): Promise; export declare function chooseDatabricksSqlWarehouse(warehouses: readonly DatabricksSqlWarehouse[]): DatabricksSqlWarehouse | undefined; //# sourceMappingURL=sql-warehouses.d.ts.map