import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export declare const ComputeInstanceState: { readonly Requested: "requested"; readonly Starting: "starting"; readonly Running: "running"; readonly Ready: "ready"; readonly Busy: "busy"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Succeeded: "succeeded"; readonly Failed: "failed"; readonly Lost: "lost"; readonly Unknown: "unknown"; }; export type ComputeInstanceState = ClosedEnum; /** @internal */ export declare const ComputeInstanceState$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComputeInstanceState$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=computeinstancestate.d.ts.map