import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { HostDnsForwardResolution } from "./hostdnsforwardresolution.js"; import { HostDnsReverseResolution } from "./hostdnsreverseresolution.js"; export type HostDns = { forwardDns?: { [k: string]: HostDnsForwardResolution; } | undefined; names?: Array | null | undefined; reverseDns?: HostDnsReverseResolution | undefined; }; /** @internal */ export declare const HostDns$inboundSchema: z.ZodType; export declare function hostDnsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hostdns.d.ts.map