import type { ToolManager } from '../../../tools/tool-manager.js';
import type { ToolCall, ToolResult } from '../../../types/core.js';
/**
 * Filters out invalid tool calls.
 * Returns valid tool calls and error results for invalid ones.
 *
 * Handles:
 * - Empty tool calls (missing id or function name)
 * - Tools that don't exist in the tool manager
 */
export declare const filterValidToolCalls: (toolCalls: ToolCall[], toolManager: ToolManager | null) => {
    validToolCalls: ToolCall[];
    errorResults: ToolResult[];
};
//# sourceMappingURL=tool-filters.d.ts.map