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