import * as pulumi from "@pulumi/pulumi"; /** * Use this function to access the current configuration of the native Google provider. */ export declare function getClientConfig(opts?: pulumi.InvokeOptions): Promise; /** * Configuration values returned by getClientConfig. */ export interface GetClientConfigResult { /** * Project of the current user. */ readonly project: string; /** * Google Cloud region */ readonly region: string; /** * Google Cloud zone */ readonly zone?: string; } /** * Use this function to access the current configuration of the native Google provider. */ export declare function getClientConfigOutput(opts?: pulumi.InvokeOptions): pulumi.Output;