import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetBrowserSessionUrlRequest = { sessionId: string; sessionToken?: string | null | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetBrowserSessionUrlRequest$inboundSchema: z.ZodType; /** @internal */ export type GetBrowserSessionUrlRequest$Outbound = { session_id: string; session_token?: string | null | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetBrowserSessionUrlRequest$outboundSchema: z.ZodType; export declare function getBrowserSessionUrlRequestToJSON(getBrowserSessionUrlRequest: GetBrowserSessionUrlRequest): string; export declare function getBrowserSessionUrlRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getbrowsersessionurl.d.ts.map