/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { DatabaseReference } from '../Config/Config.types.js'; /** * Upserts a database reference in the provided collection. * @param databaseReferences - The collection of database references. * @param params - Parameters for the database reference. * @param params.entitySetName - The name of the entity set. * @param params.logicalName - The logical name of the entity. * @param params.environmentName - The name of the environment (optional). * @param params.cdpDataSourceNames - The names of the CDP data sources (optional). * @returns The disambiguated data source name. */ export declare function upsertDatabaseReference(databaseReferences: Record, params: { entitySetName: string; logicalName: string; displayName: string; cdpDataSourceNames?: string[]; }): string; export declare function getExistingDataverseNames(databaseReferences: Record): string[]; //# sourceMappingURL=databaseReferences.d.ts.map