import type { Plugin, PluginObject, PluginOptions } from '../types';
/**
 * Resolve the module of a plugin according to name or path
 */
export declare const resolvePluginModule: <T extends PluginOptions = PluginOptions, U extends PluginObject = PluginObject>(pluginName: string) => Plugin<T, U> | null;
