import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Local shell tool definition: Enables the local shell execution tool. */ export type LocalShellToolDefinition = { type: "local_shell"; }; /** @internal */ export declare const LocalShellToolDefinition$inboundSchema: z.ZodType; /** @internal */ export type LocalShellToolDefinition$Outbound = { type: "local_shell"; }; /** @internal */ export declare const LocalShellToolDefinition$outboundSchema: z.ZodType; export declare function localShellToolDefinitionToJSON(localShellToolDefinition: LocalShellToolDefinition): string; export declare function localShellToolDefinitionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshelltooldefinition.d.ts.map