import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SshAlgorithmSelection } from "./sshalgorithmselection.js"; import { SshEndpointId } from "./sshendpointid.js"; import { SshKexInitMessage } from "./sshkexinitmessage.js"; import { SshServerHostKey } from "./sshserverhostkey.js"; export type Ssh = { algorithmSelection?: SshAlgorithmSelection | undefined; endpointId?: SshEndpointId | undefined; hasshFingerprint?: string | undefined; kexInitMessage?: SshKexInitMessage | undefined; serverHostKey?: SshServerHostKey | undefined; }; /** @internal */ export declare const Ssh$inboundSchema: z.ZodType; export declare function sshFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ssh.d.ts.map