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