import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Status } from "./status.js"; /** * Local shell call output item: The captured output payload returned by a local-shell tool call. */ export type LocalShellCallOutput = { type: "local_shell_call_output"; id: string; output: string; /** * The processing status of an individual item. 'in_progress' means currently processing, 'completed' means finished successfully, 'incomplete' means processing stopped before completion. */ status?: Status | undefined; }; /** @internal */ export declare const LocalShellCallOutput$inboundSchema: z.ZodType; /** @internal */ export type LocalShellCallOutput$Outbound = { type: "local_shell_call_output"; id: string; output: string; status?: string | undefined; }; /** @internal */ export declare const LocalShellCallOutput$outboundSchema: z.ZodType; export declare function localShellCallOutputToJSON(localShellCallOutput: LocalShellCallOutput): string; export declare function localShellCallOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshellcalloutput.d.ts.map