import { Compiler, Compilation, LoaderDefinitionFunction, ModuleGraph, Dependency } from 'webpack'; type GetMapValue> = M extends Map ? V : never; export type NormalModuleFactory = ReturnType; export type SourceMapInput = Parameters[1]; export type EntryPoint = GetMapValue; export type ExportInfo = ReturnType; export type ExportsInfo = ReturnType; export interface HarmonyImportSpecifierDependency extends Dependency { getIds(graph: ModuleGraph): string[]; name: string; userRequest: string; } export {};