import * as z from "zod"; export type UpdateUsernameRequestBody = { newUsername: string; }; export type UpdateUsernameRequest = { requestBody?: UpdateUsernameRequestBody | undefined; username: string; }; /** @internal */ export declare const UpdateUsernameRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateUsernameRequestBody$Outbound = { new_username: string; }; /** @internal */ export declare const UpdateUsernameRequestBody$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 UpdateUsernameRequestBody$ { /** @deprecated use `UpdateUsernameRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUsernameRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUsernameRequestBody$Outbound` instead. */ type Outbound = UpdateUsernameRequestBody$Outbound; } /** @internal */ export declare const UpdateUsernameRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateUsernameRequest$Outbound = { RequestBody?: UpdateUsernameRequestBody$Outbound | undefined; username: string; }; /** @internal */ export declare const UpdateUsernameRequest$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 UpdateUsernameRequest$ { /** @deprecated use `UpdateUsernameRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUsernameRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUsernameRequest$Outbound` instead. */ type Outbound = UpdateUsernameRequest$Outbound; } //# sourceMappingURL=updateusername.d.ts.map