import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeploymentPortalManagedDnsRecord = { name: string; type: string; value: string; ttl?: number | null | undefined; }; /** @internal */ export declare const DeploymentPortalManagedDnsRecord$inboundSchema: z.ZodType; export declare function deploymentPortalManagedDnsRecordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentportalmanageddnsrecord.d.ts.map