import type { QueryTemplateFunction } from "./index.js"; export type DatabricksConfig = { type: "databricks"; host: string; path: string; } & ({ authType?: "access-token"; token: string; } | { authType: "databricks-oauth"; oauthClientId?: string; oauthClientSecret?: string; }); export default function databricks({ type, ...options }: DatabricksConfig): QueryTemplateFunction;