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 generateSettingsContainerApp({ appLocation, containerAppName, keyVaultName, resourceGroupName, subscriptionName, logger, }: { appLocation: string; containerAppName: string; keyVaultName: string | undefined; resourceGroupName: string; subscriptionName: string; logger: Logger; }): Promise; export { generateSettingsContainerApp };