import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateCallbackState = { /** * The redirect URI to be used after the connection is created. */ redirectUri?: string | undefined; }; /** @internal */ export declare const CreateCallbackState$inboundSchema: z.ZodType; /** @internal */ export type CreateCallbackState$Outbound = { redirect_uri?: string | undefined; }; /** @internal */ export declare const CreateCallbackState$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateCallbackState$ { /** @deprecated use `CreateCallbackState$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateCallbackState$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateCallbackState$Outbound` instead. */ type Outbound = CreateCallbackState$Outbound; } export declare function createCallbackStateToJSON(createCallbackState: CreateCallbackState): string; export declare function createCallbackStateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcallbackstate.d.ts.map