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