import * as z from "zod"; export type DeleteUserRequestBody = { blockEmail?: boolean | undefined; blockIp?: boolean | undefined; blockUrls?: boolean | undefined; deletePosts?: boolean | undefined; }; export type DeleteUserRequest = { requestBody?: DeleteUserRequestBody | undefined; id: number; }; /** * response */ export type DeleteUserResponseBody = { deleted: boolean; }; /** @internal */ export declare const DeleteUserRequestBody$inboundSchema: z.ZodType; /** @internal */ export type DeleteUserRequestBody$Outbound = { block_email?: boolean | undefined; block_ip?: boolean | undefined; block_urls?: boolean | undefined; delete_posts?: boolean | undefined; }; /** @internal */ export declare const DeleteUserRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DeleteUserRequestBody$ { /** @deprecated use `DeleteUserRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteUserRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteUserRequestBody$Outbound` instead. */ type Outbound = DeleteUserRequestBody$Outbound; } /** @internal */ export declare const DeleteUserRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteUserRequest$Outbound = { RequestBody?: DeleteUserRequestBody$Outbound | undefined; id: number; }; /** @internal */ export declare const DeleteUserRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DeleteUserRequest$ { /** @deprecated use `DeleteUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteUserRequest$Outbound` instead. */ type Outbound = DeleteUserRequest$Outbound; } /** @internal */ export declare const DeleteUserResponseBody$inboundSchema: z.ZodType; /** @internal */ export type DeleteUserResponseBody$Outbound = { deleted: boolean; }; /** @internal */ export declare const DeleteUserResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DeleteUserResponseBody$ { /** @deprecated use `DeleteUserResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteUserResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteUserResponseBody$Outbound` instead. */ type Outbound = DeleteUserResponseBody$Outbound; } //# sourceMappingURL=deleteuser.d.ts.map