import { type Tool } from '@wrongstack/core/types'; export interface ToolUseInput { tool: string; input: Record; } export interface ToolUseOutput { tool: string; /** Always true: any refusal or nested failure is thrown, not returned. */ success: true; result?: unknown | undefined; executionMs: number; } export declare const toolUseTool: Tool; //# sourceMappingURL=tool-use.d.ts.map