import { IToolFormatter } from './ToolFormatterRegistry.js'; import { ExtendedToolExecutionResult } from './types.js'; /** * Bash 工具格式化器 */ export declare class BashFormatter implements IToolFormatter { name: string; supportedTools: string[]; format(result: ExtendedToolExecutionResult): string; formatError(error: Error): string; } //# sourceMappingURL=BashFormatter.d.ts.map