import type { BashOutput } from './types.js'; /** * Host-only bash tool with a persistent session across calls. * State (variables, working directory) persists within the session. * Node.js only. */ export declare const bash: import("../../index.js").InvokableTool<{ mode: "execute" | "restart"; command?: string | undefined; timeout?: number | undefined; }, BashOutput | "Bash session restarted">; //# sourceMappingURL=bash.d.ts.map