import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Peer = { ip?: string | undefined; port?: number | undefined; publicKey?: string | undefined; type?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const Peer$inboundSchema: z.ZodType; export declare function peerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=peer.d.ts.map