import type { AnyTool } from '../../types/effectTool.js'; import type { Shell } from '../../types/shell.js'; export interface CreateShellToolOptions { shell: Shell; timeoutMs?: number; } export declare function createShellTool(opts: CreateShellToolOptions): AnyTool;