import type { Compilation } from 'webpack'; interface MatchedConfigs { resolved: Map; unresolved: Map; prefixed: Map; } export declare function resolveMatchedConfigs(compilation: Compilation, configs: [string, T][]): Promise>; export {};