import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthorizeUser = { id: string; email: string; avatarUrl: string | null; }; /** @internal */ export declare const AuthorizeUser$inboundSchema: z.ZodMiniType; export declare function authorizeUserFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authorizeuser.d.ts.map