import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShellCallAction, ShellCallAction$Outbound } from "./shellcallaction.js"; export declare const ShellCallStatus: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; }; export type ShellCallStatus = ClosedEnum; /** * Shell call item: A hosted-container shell execution request with a command and status. */ export type ShellCall = { type: "shell_call"; id: string; callId: string; action: ShellCallAction; status: ShellCallStatus; }; /** @internal */ export declare const ShellCallStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ShellCallStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ShellCall$inboundSchema: z.ZodType; /** @internal */ export type ShellCall$Outbound = { type: "shell_call"; id: string; call_id: string; action: ShellCallAction$Outbound; status: string; }; /** @internal */ export declare const ShellCall$outboundSchema: z.ZodType; export declare function shellCallToJSON(shellCall: ShellCall): string; export declare function shellCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shellcall.d.ts.map