import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const RecordType: { readonly Unknown: ""; readonly A: "a"; readonly Aaaa: "aaaa"; }; export type RecordType = OpenEnum; export type HostDnsForwardResolution = { name?: string | undefined; recordType?: RecordType | undefined; resolveTime?: string | undefined; server?: string | undefined; }; /** @internal */ export declare const RecordType$inboundSchema: z.ZodType; /** @internal */ export declare const HostDnsForwardResolution$inboundSchema: z.ZodType; export declare function hostDnsForwardResolutionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hostdnsforwardresolution.d.ts.map