import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SshAlgorithmSelectionDirectionAlgorithms } from "./sshalgorithmselectiondirectionalgorithms.js"; export type SshAlgorithmSelection = { clientToServerAlgGroup?: SshAlgorithmSelectionDirectionAlgorithms | undefined; hostKeyAlgorithm?: string | undefined; kexAlgorithm?: string | undefined; serverToClientAlgGroup?: SshAlgorithmSelectionDirectionAlgorithms | undefined; }; /** @internal */ export declare const SshAlgorithmSelection$inboundSchema: z.ZodType; export declare function sshAlgorithmSelectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sshalgorithmselection.d.ts.map