import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage */ export declare function getUser(args?: GetUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUser. */ export interface GetUserArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; email?: string; } /** * A collection of values returned by getUser. */ export interface GetUserResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; readonly email: string; /** * The ID of this resource. */ readonly id: string; /** * The ID of the user's on-call role, or empty when unset. */ readonly onCallRoleId: string; /** * The ID of the user's (general) role, or empty when unset. */ readonly roleId: string; } /** * ## Example Usage */ export declare function getUserOutput(args?: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUser. */ export interface GetUserOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; email?: pulumi.Input; } //# sourceMappingURL=getUser.d.ts.map