/** * Scan orchestrator - Main scan execution flow and metric consolidation */ import { type ScoringResult } from '../index'; import { type ScanOptions } from './scan-helpers'; /** * Executes a unified scan based on the provided configuration. * Consolidates analysis results, scores, and calculates business metrics. * * @param resolvedDir - The directory being scanned * @param finalOptions - Final resolved scan options * @param options - Original CLI command options * @param startTime - The timestamp when the process started * @returns An object containing the unified results and the scoring result */ export declare function runUnifiedScan( resolvedDir: string, finalOptions: any, options: ScanOptions, startTime: number ): Promise<{ results: import('../options').UnifiedAnalysisResult; scoringResult: ScoringResult | undefined; }>; //# sourceMappingURL=scan-orchestrator.d.ts.map