import { GraphOptions } from '..' import { ScanFilters } from './scan_filter' import { Graph } from '../graph' import { convertPath } from '../path' import ts from 'typescript' export type PathObj = ReturnType export type PathMapping = { relBaseUrl: string | undefined baseUrl: string | undefined paths: ts.MapLike | undefined } export declare function start_scan(options: GraphOptions, filters: ScanFilters, g: Graph, g_folders: Graph): void export declare function getSrcFiles(srcRoot: string, isDir: boolean): string[] export declare function getAllSrcFiles(srcRoot: string, isGlob: boolean): string[]