import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Socks = { noAuthenticationRequired?: boolean | undefined; preferredAuthentication?: string | undefined; preferredAuthenticationValue?: number | undefined; socksVersion?: number | undefined; supportedVersions?: Array | null | undefined; }; /** @internal */ export declare const Socks$inboundSchema: z.ZodType; export declare function socksFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=socks.d.ts.map