import { type FoldRule, type IdentKind } from "../ident/fold.js"; import type { QualifiedNameConfig } from "../ir/qualified-name.js"; export declare const DATABRICKS_FOLD_RULE: FoldRule; /** Unity Catalog's three-level namespace: catalog.schema.object * (docs.databricks.com/en/data-governance/unity-catalog — "three-level namespace"). */ export declare const DATABRICKS_NAME_CONFIG: QualifiedNameConfig; /** Fold an identifier to its Databricks identity key. */ export declare function fold(raw: string, kind?: IdentKind): string; /** Presentation twin: strip delimiters, no case change. */ export declare function displayName(raw: string): string; export declare function foldTableName(parts: string[]): string[]; export declare function matchesSourceKey(key: string, rawPart: string): boolean;