import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Server-owned workload sizing classes. * * @remarks * * Resource classes are deliberately independent of the language/runtime * profile. In particular, Coding Harness always uses the Medium class even when a * caller sends a smaller or absent legacy ``memory_mib`` value. */ export declare const SandboxResourceClass: { readonly Medium: "medium"; }; /** * Server-owned workload sizing classes. * * @remarks * * Resource classes are deliberately independent of the language/runtime * profile. In particular, Coding Harness always uses the Medium class even when a * caller sends a smaller or absent legacy ``memory_mib`` value. */ export type SandboxResourceClass = ClosedEnum; /** @internal */ export declare const SandboxResourceClass$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SandboxResourceClass$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=sandboxresourceclass.d.ts.map