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 PostApiSandboxByIdInputRequest = { id: string; /** * Write one NDJSON command line to a running Helix session's stdin */ body: models.SessionIdLine; }; /** * The line reached the session. Whether the agent accepted it is reported on the `rpc` stream, not here. */ export type PostApiSandboxByIdInputResponse = { accepted: true; }; /** @internal */ export type PostApiSandboxByIdInputRequest$Outbound = { id: string; body: models.SessionIdLine$Outbound; }; /** @internal */ export declare const PostApiSandboxByIdInputRequest$outboundSchema: z.ZodMiniType; export declare function postApiSandboxByIdInputRequestToJSON(postApiSandboxByIdInputRequest: PostApiSandboxByIdInputRequest): string; /** @internal */ export declare const PostApiSandboxByIdInputResponse$inboundSchema: z.ZodMiniType; export declare function postApiSandboxByIdInputResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=post-api-sandbox-by-id-input.d.ts.map