import type { App, Plugin, PluginObject, PluginOptions } from '../types';
/**
 * Resolve a plugin according to name / path / module and config
 */
export declare const resolvePlugin: <T extends PluginOptions = PluginOptions, U extends PluginObject = PluginObject>(app: App, plugin: string | Plugin<T, U>, config?: Partial<T>) => U;
