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"; export type PostApiSandboxByIdExecRequest = { id: string; stream?: models.Schemadefaul6 | undefined; /** * Run a command inside a sandbox */ body: models.CommandCwdTimeoutMs; }; /** * Command result */ export type PostApiSandboxByIdExecResponse = { /** * The command's real exit code */ exitCode: number; stdout: string; stderr: string; timedOut: boolean; }; /** @internal */ export type PostApiSandboxByIdExecRequest$Outbound = { id: string; stream: string; body: models.CommandCwdTimeoutMs$Outbound; }; /** @internal */ export declare const PostApiSandboxByIdExecRequest$outboundSchema: z.ZodMiniType; export declare function postApiSandboxByIdExecRequestToJSON(postApiSandboxByIdExecRequest: PostApiSandboxByIdExecRequest): string; /** @internal */ export declare const PostApiSandboxByIdExecResponse$inboundSchema: z.ZodMiniType; export declare function postApiSandboxByIdExecResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=post-api-sandbox-by-id-exec.d.ts.map