import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; import * as models from "../index.js"; /** * A sandbox as recorded by the service — one record whether spawned from CLI or platform */ export type PostApiSandboxResponse = { /** * Sandbox identifier */ id: string; /** * Bumps when the underlying instance is replaced */ generation: number; /** * Provider that owns this sandbox */ provider: string; /** * CPU architecture the image was built for. Validated against the provider at preflight. */ arch: models.SchemadefaulOpen; status: models.Schemadefaul5Open; definitionName: string; environmentName?: string | undefined; /** * ISO timestamp */ createdAt: string; }; /** @internal */ export declare const PostApiSandboxResponse$inboundSchema: z.ZodMiniType; export declare function postApiSandboxResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=post-api-sandbox.d.ts.map