/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import { Config } from '../config/config.js'; /** * Hook to determine if tool call rendering should be suppressed */ export declare class ToolRenderSuppressionHook { /** * Checks if tool call rendering should be suppressed for the current session * Tool calls are suppressed when there's an active todo, as they're displayed in the todo UI instead */ static shouldSuppressToolCallRender(config: Config): boolean; }