import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Network } from "./network.js"; import { Organization } from "./organization.js"; export type Whois = { network?: Network | undefined; organization?: Organization | undefined; }; /** @internal */ export declare const Whois$inboundSchema: z.ZodType; export declare function whoisFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=whois.d.ts.map