import type { SecretProvider } from '@fabric-harness/sdk'; import { type DatabricksPrincipal } from './identity.js'; export interface DatabricksSecretsProviderOptions { host: string; principal: DatabricksPrincipal; fetchImpl?: typeof fetch; scope: string | ((name: string, tenantId?: string) => string | Promise); keyForSecret?: (name: string) => string; } /** Databricks Secret Management adapter. Secret values are decoded only at runtime. */ export declare function databricksSecretsProvider(options: DatabricksSecretsProviderOptions): SecretProvider; //# sourceMappingURL=secrets.d.ts.map