import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OAuthUrlResponse = { url: string; }; /** @internal */ export declare const OAuthUrlResponse$inboundSchema: z.ZodType; /** @internal */ export type OAuthUrlResponse$Outbound = { url: string; }; /** @internal */ export declare const OAuthUrlResponse$outboundSchema: z.ZodType; export declare function oAuthUrlResponseToJSON(oAuthUrlResponse: OAuthUrlResponse): string; export declare function oAuthUrlResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=oauthurlresponse.d.ts.map