import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LocalShellAction = { type: "exec"; command: Array; env: { [k: string]: string; }; timeoutMs?: number | undefined; user?: string | undefined; workingDirectory?: string | undefined; }; /** @internal */ export declare const LocalShellAction$inboundSchema: z.ZodType; /** @internal */ export type LocalShellAction$Outbound = { type: "exec"; command: Array; env: { [k: string]: string; }; timeout_ms?: number | undefined; user?: string | undefined; working_directory?: string | undefined; }; /** @internal */ export declare const LocalShellAction$outboundSchema: z.ZodType; export declare function localShellActionToJSON(localShellAction: LocalShellAction): string; export declare function localShellActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshellaction.d.ts.map