import { DefaultAzureCredential } from '@azure/identity'; import { Subscription } from '@azure/arm-subscriptions'; /** * 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 getSubscription({ credentials, subscriptionName, }: { credentials: DefaultAzureCredential; subscriptionName: string; }): Promise; export { getSubscription };