import type { IResolvePlugins } from './types';
/**
 * @desc Get the execution function of the plug-in, add path as the unique key value
 * @param { string } path string
 */
export declare function pathToRegister(path: string): {
    path: string;
    apply(): any;
};
/**
 * @desc Get all plugins
 * @param { object } options object
 */
export default function resolvePlugins(options: IResolvePlugins): {
    path: string;
    apply(): any;
}[];
