import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShellEnvironment, ShellEnvironment$Outbound } from "./shellenvironment.js"; /** * Shell tool definition: Enables shell command execution in a managed container environment. */ export type ShellToolDefinition = { type: "shell"; environment?: ShellEnvironment | undefined; }; /** @internal */ export declare const ShellToolDefinition$inboundSchema: z.ZodType; /** @internal */ export type ShellToolDefinition$Outbound = { type: "shell"; environment?: ShellEnvironment$Outbound | undefined; }; /** @internal */ export declare const ShellToolDefinition$outboundSchema: z.ZodType; export declare function shellToolDefinitionToJSON(shellToolDefinition: ShellToolDefinition): string; export declare function shellToolDefinitionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shelltooldefinition.d.ts.map