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