/** * This file was auto-generated by Fern from our API Definition. */ /** * Status of a sandbox instance - matches database enum */ export type SandboxStatus = "idle" | "occupied"; export declare const SandboxStatus: { readonly Idle: "idle"; readonly Occupied: "occupied"; };