import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeSSH = { command: string; host: string; port: number; user: string; }; /** @internal */ export declare const ComputeSSH$inboundSchema: z.ZodType; /** @internal */ export type ComputeSSH$Outbound = { command: string; host: string; port: number; user: string; }; /** @internal */ export declare const ComputeSSH$outboundSchema: z.ZodType; export declare function computeSSHToJSON(computeSSH: ComputeSSH): string; export declare function computeSSHFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computessh.d.ts.map