import type { Tool } from './tool-types.js'; export interface ExtractedToolInvocation { name: string; input: Record; satisfiedRequired: string[]; missingRequired: string[]; } export declare function extractToolInvocationFromPlanText(text: string, tools: readonly Tool[]): ExtractedToolInvocation | null; //# sourceMappingURL=extract-tool-invocation.d.ts.map