import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LocalShellAction, LocalShellAction$Outbound } from "./localshellaction.js"; /** * Local shell call item: A local-shell execution request with command details and execution status. */ export type LocalShellCall = { type: "local_shell_call"; id: string; callId: string; action: LocalShellAction; status: string; }; /** @internal */ export declare const LocalShellCall$inboundSchema: z.ZodType; /** @internal */ export type LocalShellCall$Outbound = { type: "local_shell_call"; id: string; call_id: string; action: LocalShellAction$Outbound; status: string; }; /** @internal */ export declare const LocalShellCall$outboundSchema: z.ZodType; export declare function localShellCallToJSON(localShellCall: LocalShellCall): string; export declare function localShellCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshellcall.d.ts.map