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 getFunctionAppAppSettings({ credentials, functionAppName, resourceGroupName, subscription, logger, }: { credentials: DefaultAzureCredential; functionAppName: string; resourceGroupName: string; subscription: Subscription; logger: Logger; }): Promise>; declare const functionAppAppSettingsProvider: { getSettings: typeof getFunctionAppAppSettings; nestingDelimiter: string; }; export { functionAppAppSettingsProvider };