import type { Tool } from '@wrongstack/core/types'; export interface BashInput { command: string; timeout_ms?: number | undefined; background?: boolean | undefined; } export interface BashOutput { output: string; exit_code: number | null; timed_out: boolean; pid?: number | null | undefined; error?: string | undefined; } export declare const bashTool: Tool; //# sourceMappingURL=bash.d.ts.map