import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type KubernetesNodeNodeAddress = { /** * Node address, IP/URL. */ address?: string | undefined; /** * Node address type, one of Hostname, ExternalIP or InternalIP. */ addressType?: string | undefined; }; /** @internal */ export declare const KubernetesNodeNodeAddress$inboundSchema: z.ZodType; export declare function kubernetesNodeNodeAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=kubernetesnodenodeaddress.d.ts.map