import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthorizeUser } from "./authorizeuser.js"; import { OAuth2ClientPublic } from "./oauth2clientpublic.js"; import { Scope } from "./scope.js"; export type AuthorizeResponseUser = { client: OAuth2ClientPublic; subType: "user"; sub: AuthorizeUser | null; scopes: Array; scopeDisplayNames?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const AuthorizeResponseUser$inboundSchema: z.ZodMiniType; export declare function authorizeResponseUserFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authorizeresponseuser.d.ts.map