import { Subscription } from '@azure/arm-subscriptions'; import { DefaultAzureCredential } from '@azure/identity'; import { Logger } from '../shared/cli/logger.js'; /** * Copyright (c) Investec * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. */ declare function getContainerAppEnvironmentVariables({ containerAppName, credentials, resourceGroupName, subscription, logger, }: { containerAppName: string; credentials: DefaultAzureCredential; resourceGroupName: string; subscription: Subscription; logger: Logger; }): Promise>; declare const containerAppEnvironmentVariablesProvider: { getSettings: typeof getContainerAppEnvironmentVariables; nestingDelimiter: string; }; export { containerAppEnvironmentVariablesProvider };