import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; /** * Response for status 200 */ export type UpdateProfileResponse = { id: string; name: string; email: string; avatarUrl: string | null; emailVerified: boolean; role: string; isActive: boolean; lastLoginAt: Date | null; createdAt: Date; updatedAt: Date; }; /** @internal */ export declare const UpdateProfileResponse$inboundSchema: z.ZodMiniType; export declare function updateProfileResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=update-profile.d.ts.map