import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getUser(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getUser. */ export interface GetUserResult { readonly betas: string[]; readonly country: string; readonly firstName: string; readonly hasBusinessZones: boolean; readonly hasEnterpriseZones: boolean; readonly hasProZones: boolean; readonly id: string; readonly lastName: string; readonly organizations: outputs.GetUserOrganization[]; readonly suspended: boolean; readonly telephone: string; readonly twoFactorAuthenticationEnabled: boolean; readonly twoFactorAuthenticationLocked: boolean; readonly zipcode: string; } export declare function getUserOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getUser.d.ts.map