import * as z from "zod/v3"; /** * Describes the request body of the /deleteuser API call */ export type DeleteUserRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * The datasource for which the user is removed */ datasource: string; /** * The email of the user to be deleted */ email: string; }; /** @internal */ export type DeleteUserRequest$Outbound = { version?: number | undefined; datasource: string; email: string; }; /** @internal */ export declare const DeleteUserRequest$outboundSchema: z.ZodType; export declare function deleteUserRequestToJSON(deleteUserRequest: DeleteUserRequest): string; //# sourceMappingURL=deleteuserrequest.d.ts.map