import * as pulumi from "@pulumi/pulumi"; /** * Information about an individual user. */ export declare function getPersonUser(args: GetPersonUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPersonUser. */ export interface GetPersonUserArgs { /** * Email address used to find the User ID. */ email: string; } /** * A collection of values returned by getPersonUser. */ export interface GetPersonUserResult { /** * Email address used to find the User ID. */ readonly email: string; /** * User ID. */ readonly id: string; } /** * Information about an individual user. */ export declare function getPersonUserOutput(args: GetPersonUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getPersonUser. */ export interface GetPersonUserOutputArgs { /** * Email address used to find the User ID. */ email: pulumi.Input; }