import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TokenResponse = { accessToken: string; tokenType: "Bearer"; expiresIn: number; refreshToken?: string | null | undefined; scope: string; idToken?: string | null | undefined; }; /** @internal */ export declare const TokenResponse$inboundSchema: z.ZodMiniType; export declare function tokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tokenresponse.d.ts.map