import type { PLUGIN_STAGE } from '@omni-door/utils';
import type { HandlerFactory, PluginHandler, OmniPlugin } from '../index.d';
export declare function getHandlers<T extends PLUGIN_STAGE>(plugins: OmniPlugin<T>[], stage: T): {
    [pluginName: string]: PluginHandler<T>;
};
export declare const handlerFactory: HandlerFactory;
