import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const CodexLocalShellToolType: { readonly LocalShell: "local_shell"; }; export type CodexLocalShellToolType = ClosedEnum; /** * Local shell tool configuration */ export type CodexLocalShellTool = { type: CodexLocalShellToolType; }; /** @internal */ export declare const CodexLocalShellToolType$inboundSchema: z.ZodEnum; /** @internal */ export declare const CodexLocalShellToolType$outboundSchema: z.ZodEnum; /** @internal */ export declare const CodexLocalShellTool$inboundSchema: z.ZodType; /** @internal */ export type CodexLocalShellTool$Outbound = { type: string; }; /** @internal */ export declare const CodexLocalShellTool$outboundSchema: z.ZodType; export declare function codexLocalShellToolToJSON(codexLocalShellTool: CodexLocalShellTool): string; export declare function codexLocalShellToolFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codexlocalshelltool.d.ts.map