import type { WireManifest } from '../types.js'; /** * Scan node_modules/@mostajs/* for wire.json manifests. * Returns all discovered module manifests sorted by priority. */ export declare function discoverModules(rootDir: string): WireManifest[]; /** * Resolve the absolute path to a module's register function. * The wire.json "register" field is relative to the module package root. * e.g. "./dist/register.js" → "/abs/path/node_modules/@mostajs/secu/dist/register.js" */ export declare function resolveRegisterPath(rootDir: string, manifest: WireManifest): string; //# sourceMappingURL=discovery.d.ts.map