import { type ToolCall } from '../../../types/ToolCall';
/**
 * Returns true when one tool call represents a user-facing action.
 *
 * @param toolCall - Tool call candidate.
 * @returns Whether the tool call should be visible in chat progress and chips.
 *
 * @private internal utility of `<Chat/>`
 */
export declare function isVisibleChatToolCall(toolCall: Pick<ToolCall, 'name'>): boolean;
