import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UserInfoLink = { rel: string; href: string; }; export type Organization = { organizationId: string; links: Array; }; export type Account = { accountId: string; isDefault: boolean; accountName: string; baseUri: string; organization?: Organization | undefined; }; export type UserInfo = { sub: string; name: string; givenName: string; familyName: string; created: string; email: string; accounts: Array; }; /** @internal */ export declare const UserInfoLink$inboundSchema: z.ZodType; export declare function userInfoLinkFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Organization$inboundSchema: z.ZodType; export declare function organizationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Account$inboundSchema: z.ZodType; export declare function accountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UserInfo$inboundSchema: z.ZodType; export declare function userInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=userinfo.d.ts.map