import type * as qbusiness from "@distilled.cloud/aws/qbusiness"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Application } from "./Application.ts"; /** * `DeleteUser` request with `applicationId` injected from the bound application. */ export interface DeleteUserRequest extends Omit { } /** * Runtime binding for the `DeleteUser` operation (IAM action * `qbusiness:DeleteUser`), scoped to one {@link Application}. * * Deletes a user from the application user store. * Provide the implementation with * `Effect.provide(AWS.QBusiness.DeleteUserHttp)`. * * ### User Management * **Example:** Delete a User * ```typescript * const deleteUser = yield* AWS.QBusiness.DeleteUser(app); * * yield* deleteUser({ userId: "user@example.com" }); * ``` * * @binding */ export interface DeleteUser extends Binding.Service Effect.Effect<(request: DeleteUserRequest) => Effect.Effect>> { } export declare const DeleteUser: DeleteUser; //# sourceMappingURL=DeleteUser.d.ts.map