import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthorizeIntent = { state: string; authorizeUrl: string; expiresInSeconds: number; }; /** @internal */ export declare const AuthorizeIntent$inboundSchema: z.ZodType; /** @internal */ export type AuthorizeIntent$Outbound = { state: string; authorize_url: string; expires_in_seconds: number; }; /** @internal */ export declare const AuthorizeIntent$outboundSchema: z.ZodType; export declare function authorizeIntentToJSON(authorizeIntent: AuthorizeIntent): string; export declare function authorizeIntentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authorizeintent.d.ts.map