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"; import { Hosting } from "./hosting.js"; import { Region } from "./region.js"; export declare const NodeV1Status: { readonly Running: "running"; readonly Draining: "draining"; readonly Stopped: "stopped"; }; export type NodeV1Status = OpenEnum; export type NodeV1 = { stoppedAt: Date | null; startedAt: Date; gpu: number | null; memoryMb: number; cpu: number; region: Region; status: NodeV1Status; hosting: Hosting; host: string; nodeId: string; }; /** @internal */ export declare const NodeV1Status$inboundSchema: z.ZodType; /** @internal */ export declare const NodeV1$inboundSchema: z.ZodType; export declare function nodeV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nodev1.d.ts.map