import { Analyzer } from './analyzer'; import { ScriptHost } from '../ts-ast-util'; export declare class AnalyzerFactory { createAnalyzerAndScriptHostFromProjectPath(projectPath: string, debug?: (msg: string) => void, currentDirectory?: string): { analyzer: Analyzer; scriptHost: ScriptHost; }; createAnalyzerFromProjectPath(projectPath: string, debug?: (msg: string) => void, currentDirectory?: string): Analyzer; private _readTsconfig; }