import EventBus from '../EventBus'; declare type modulesProps = { /** * Event bus */ eventBus: EventBus; /** * Wheter or not do to the first run full sync */ firstRunSync: boolean; /** * Package manager (fe. "npm", "yarn", "pnpm") */ pmExec?: string; }; declare const modules: ({ eventBus, pmExec, firstRunSync, }: modulesProps) => void; export default modules;