import { extractWorkflowInputs } from '../../shared/discovery'; import type { WorkflowCandidate } from '../../../../types/discovery'; export declare function findCompiledWorkflows(prompt: string): Promise<{ inventory: string; toolIds: string[]; candidates: WorkflowCandidate[]; }>; export declare function evaluateWorkflowMatch(prompt: string, candidates: WorkflowCandidate[]): Promise<{ matched: boolean; workflowName: string | null; confidence: number; }>; export { extractWorkflowInputs };