import type { ToolCall } from '../providers/anthropic-direct/types.js'; import type { ConcurrencyClassifier } from './types.js'; export declare function defaultConcurrencyClassifier(toolName: string): boolean; export interface Batch { isConcurrencySafe: boolean; indices: number[]; } export declare function partitionIntoBatches(calls: ToolCall[], classifier: ConcurrencyClassifier): Batch[];