import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ShellCallAction = { type: "exec"; /** * Shell command to execute. */ command?: string | undefined; /** * Command timeout in milliseconds. */ timeoutMs?: number | undefined; /** * Maximum output characters. */ maxOutputLength?: number | undefined; }; /** @internal */ export declare const ShellCallAction$inboundSchema: z.ZodType; /** @internal */ export type ShellCallAction$Outbound = { type: "exec"; command?: string | undefined; timeout_ms?: number | undefined; max_output_length?: number | undefined; }; /** @internal */ export declare const ShellCallAction$outboundSchema: z.ZodType; export declare function shellCallActionToJSON(shellCallAction: ShellCallAction): string; export declare function shellCallActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shellcallaction.d.ts.map