import * as z from "zod"; export type AnonymizeUserRequest = { id: number; }; /** * response */ export type AnonymizeUserResponseBody = { success: string; username: string; }; /** @internal */ export declare const AnonymizeUserRequest$inboundSchema: z.ZodType; /** @internal */ export type AnonymizeUserRequest$Outbound = { id: number; }; /** @internal */ export declare const AnonymizeUserRequest$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 AnonymizeUserRequest$ { /** @deprecated use `AnonymizeUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AnonymizeUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AnonymizeUserRequest$Outbound` instead. */ type Outbound = AnonymizeUserRequest$Outbound; } /** @internal */ export declare const AnonymizeUserResponseBody$inboundSchema: z.ZodType; /** @internal */ export type AnonymizeUserResponseBody$Outbound = { success: string; username: string; }; /** @internal */ export declare const AnonymizeUserResponseBody$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 AnonymizeUserResponseBody$ { /** @deprecated use `AnonymizeUserResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AnonymizeUserResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AnonymizeUserResponseBody$Outbound` instead. */ type Outbound = AnonymizeUserResponseBody$Outbound; } //# sourceMappingURL=anonymizeuser.d.ts.map