type FileExtension = string; export type SyncCompilerFn = (source: string, path: string) => string; export type AsyncCompilerFn = (source: string, path: string) => Promise; export type RawSyncCompilers = Map; export type SyncCompilers = Map; export type AsyncCompilers = Map; export type HasDependency = (pkgName: string) => boolean; export {};