import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DSACryptographicKey } from "./dsacryptographickey.js"; import { ECDSACryptographicKey } from "./ecdsacryptographickey.js"; import { Ed25519CryptographicKey } from "./ed25519cryptographickey.js"; import { RSACryptographicKey } from "./rsacryptographickey.js"; export type SshServerHostKey = { certkeyPublicKey?: string | undefined; dsaPublicKey?: DSACryptographicKey | undefined; ecdsaPublicKey?: ECDSACryptographicKey | undefined; ed25519PublicKey?: Ed25519CryptographicKey | undefined; fingerprintSha256?: string | undefined; rsaPublicKey?: RSACryptographicKey | undefined; }; /** @internal */ export declare const SshServerHostKey$inboundSchema: z.ZodType; export declare function sshServerHostKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sshserverhostkey.d.ts.map