/** Local shape to avoid a circular runtime import with `./index.ts`. */ export interface DatabricksRecipeFile { path: string; content: string; } export interface DatabricksRecipe { version?: number; kind: "databricks"; name: string; aliases?: string[]; description: string; files: DatabricksRecipeFile[]; envExample: string[]; test: string; dependencies?: string[]; devDependencies?: string[]; dependencyRanges?: Record; devDependencyRanges?: Record; upgrades?: Record; verificationCommands?: string[]; previousVersions?: Record; } /** Shared identity + governance policy for Databricks product recipes. */ export declare function databricksCore(): DatabricksRecipe; /** SELECT-only SQL Warehouse + Unity Catalog table discovery tools. */ export declare function databricksSql(): DatabricksRecipe; /** Lakebase managed Postgres persistence. */ export declare function databricksLakebase(): DatabricksRecipe; /** Databricks AI Search + optional embeddings. */ export declare function databricksAiSearchRecipe(): DatabricksRecipe; /** Lakeflow Declarative Pipelines tools. */ export declare function databricksLakeflow(): DatabricksRecipe; /** Jobs / notebook compute tools. */ export declare function databricksJobsRecipe(): DatabricksRecipe; /** Checked-in Asset Bundle lifecycle (validate/deploy/run/destroy) with fingerprint drift checks. */ export declare function databricksBundleRecipe(): DatabricksRecipe; /** System Tables cost / consumption. */ export declare function databricksCost(): DatabricksRecipe; /** Databricks Apps host wiring notes + runtime helper. */ export declare function databricksApps(): DatabricksRecipe; /** Unity Catalog Agent Services registration and grant lifecycle. */ export declare function databricksAgentServicesRecipe(): DatabricksRecipe; /** Canonical governed Genie + SELECT-only SQL analytics copilot. */ export declare function databricksGenieRecipe(): DatabricksRecipe; /** Databricks managed MCP or Unity AI Gateway MCP Service client wiring. */ export declare function databricksMcpRecipe(): DatabricksRecipe; /** Composite: analyst stack (identity + SQL + UC tools via defineDatabricksAgent). */ export declare function databricksAnalyst(): DatabricksRecipe; /** Deterministic cookbook RAG chain over Databricks AI Search + Model Serving. */ export declare function databricksRagChainRecipe(): DatabricksRecipe; export declare const DATABRICKS_RECIPE_DEFINITIONS: Record; //# sourceMappingURL=databricks.d.ts.map