import { Logger } from 'winston'; import { Config, PluginArgs, PluginOptions } from '../../types/types.js'; export declare function resolveLightModulesPath(options: PluginOptions, config: Config, logger: Logger, showMsg?: boolean): Promise<{ lightModulesPath: string; newLightModulesPath?: string; }>; export declare function resolveLightModule(options: PluginOptions, pluginArgs: PluginArgs, config: Config, lightModulesPath: string, logger: Logger): Promise<{ lightModule: string; newLightModule?: string; lightModuleMsg?: string; }>; export declare function prepareLightModule(options: any, pluginArgs: any, logger: Logger): Promise<{ lightModulePath: string; newLightModulesPath?: string; newLightModule?: string; }>;