export interface PathService { loadFile(path: string): Promise; isFile(path: string): boolean; ensureAbsolutePath(path: string, rootDir: string): string; glob(pattern: string, rootDir: string): string[]; } export interface ModuleImportService { import(module: string): Promise; } //# sourceMappingURL=types.d.ts.map