import ts from 'typescript' import { GraphOptions } from '..' import { PathObj } from './scan' export declare const checkedFiles: Set export declare const ignoredFiles: Set export type IFileCache = { [index: string]: PathObj[] } export declare function getCachedImportsForFile( file: string, options: GraphOptions, cache: IFileCache, tsOptions: ts.CompilerOptions ): { orig_path: string normalized_path: string }[]