import * as z from "zod"; export type RefreshGravatarRequest = { username: string; }; /** * response */ export type RefreshGravatarResponseBody = { gravatarAvatarTemplate: string | null; gravatarUploadId: number | null; }; /** @internal */ export declare const RefreshGravatarRequest$inboundSchema: z.ZodType; /** @internal */ export type RefreshGravatarRequest$Outbound = { username: string; }; /** @internal */ export declare const RefreshGravatarRequest$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 RefreshGravatarRequest$ { /** @deprecated use `RefreshGravatarRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RefreshGravatarRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RefreshGravatarRequest$Outbound` instead. */ type Outbound = RefreshGravatarRequest$Outbound; } /** @internal */ export declare const RefreshGravatarResponseBody$inboundSchema: z.ZodType; /** @internal */ export type RefreshGravatarResponseBody$Outbound = { gravatar_avatar_template: string | null; gravatar_upload_id: number | null; }; /** @internal */ export declare const RefreshGravatarResponseBody$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 RefreshGravatarResponseBody$ { /** @deprecated use `RefreshGravatarResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RefreshGravatarResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RefreshGravatarResponseBody$Outbound` instead. */ type Outbound = RefreshGravatarResponseBody$Outbound; } //# sourceMappingURL=refreshgravatar.d.ts.map