import * as pulumi from "@pulumi/pulumi"; /** * Use this function to access the current configuration of the native Azure provider. */ export declare function getClientConfig(opts?: pulumi.InvokeOptions): Promise; /** * Configuration values returned by getClientConfig. */ export interface GetClientConfigResult { /** * Azure Client ID (Application Object ID). */ readonly clientId: string; /** * Azure Object ID of the current user or service principal. */ readonly objectId: string; /** * Azure Subscription ID */ readonly subscriptionId: string; /** * Azure Tenant ID */ readonly tenantId: string; } /** * Use this function to access the current configuration of the native Azure provider. */ export declare function getClientConfigOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;