import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UserIdentityApiKey } from "./useridentityapikey.js"; import { UserIdentityOrganization } from "./useridentityorganization.js"; import { UserIdentityWorkspace } from "./useridentityworkspace.js"; export type UserIdentity = { id: string; email: string | null; firstName: string | null; lastName: string | null; workspace?: UserIdentityWorkspace | null | undefined; organization?: UserIdentityOrganization | null | undefined; apiKey?: UserIdentityApiKey | null | undefined; }; /** @internal */ export declare const UserIdentity$inboundSchema: z.ZodType; export declare function userIdentityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=useridentity.d.ts.map