import { Options } from '../types';
import { Ecosystem, ScanResult, TestResult } from './types';
export declare function resolveAndTestFacts(ecosystem: Ecosystem, scans: {
    [dir: string]: ScanResult[];
}, options: Options): Promise<[TestResult[], string[]]>;
